Skip to content

Instantly share code, notes, and snippets.

@dipeshhkc
Created November 3, 2020 07:14
Show Gist options
  • Save dipeshhkc/9acc1590349ee1fd5c1f2baf58945fb7 to your computer and use it in GitHub Desktop.
Save dipeshhkc/9acc1590349ee1fd5c1f2baf58945fb7 to your computer and use it in GitHub Desktop.
package main
import (
"net/http"
"github.com/gin-gonic/gin"
)
func main() {
r := gin.New()
r.GET("/", func(c *gin.Context) {
c.String(http.StatusOK, "Hello World")
})
r.Run()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment