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

15 lines
238 B
Go

package routes
import (
"gitlab.com/pactual1/backend/controllers"
"github.com/gin-gonic/gin"
)
func RegisterPublicRoutes(r *gin.Engine){
r.GET("/publicmessage", controllers.GetPublicText)
// r.GET("/companies", controllers.Ge)
}