Skip to content

Latest commit

 

History

History
 
 

ginS

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

#Gin Default Server

This is API experiment for Gin.

package main

import (
	"github.com/gin-gonic/gin"
	"github.com/gin-gonic/gin/ginS"
)

func main() {
	ginS.GET("/", func(c *gin.Context) { c.String("Hello World") })
	ginS.Run()
}