package code import ( "github.com/gin-gonic/gin" ) const moduleName = "code" const pathPrefix = moduleName func Handler(r *gin.Engine) { group := r.Group(pathPrefix) group.POST("", Post) group.DELETE("", Delete) group.PUT("", Put) group.GET("", Get) }