/** * Created by VoidArtanis on 10/22/2017 */ package routes import ( "pactual1/controllers" "github.com/gin-gonic/gin" ) func RegisterPublicRoutes(r *gin.Engine){ r.GET("/publicmessage", controllers.GetPublicText) // r.GET("/companies", controllers.Ge) }