Skip to content

Files

Latest commit

f1edd2c · Aug 27, 2017

History

History
This branch is 1 commit ahead of, 813 commits behind gin-gonic/gin:master.

ginS

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 13, 2017
Aug 27, 2017

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()
}