package main import "github.com/gin-gonic/gin" func (c *ginContext) HttpHandler() { r := gin.Default() r.GET("/list", g.listPosts()) r.Run() }