Files
old-backend/routes/publicRoutes.go
2023-09-11 08:08:24 +02:00

19 lines
268 B
Go

/**
* 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)
}