Skip to content

Files

Latest commit

f83cdb3 · Nov 5, 2018

History

History

ginS

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 13, 2017
Nov 5, 2018

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