Skip to content

Files

This branch is 52 commits behind gin-gonic/gin:master.

ginS

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 13, 2017
Aug 15, 2022

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