Javier Provecho Fernandez 9e930b9bdd lint code 9 years ago
..
README.md 39a82ce0b8 ginS -- api experiment 10 years ago
gins.go 9e930b9bdd lint code 9 years ago

README.md

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