gin/ginS
Javier Provecho Fernandez 9e930b9bdd lint code
2016-04-15 01:16:46 +02:00
..
gins.go lint code 2016-04-15 01:16:46 +02:00
README.md ginS -- api experiment 2015-08-16 18:44:18 +02:00

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