Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 249 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 249 Bytes

#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(200, "Hello World") })
	ginS.Run()
}