package examples import ( "github.com/gin-gonic/gin" ) func Bind(r *gin.RouterGroup) { r.GET("/ping", ping) r.GET("/incr", incr) }