Files
old-backend/routes/publicRoutes.go
2023-09-06 11:58:33 +02:00

18 lines
301 B
Go

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