2023-09-04 11:13:21 +02:00
|
|
|
/**
|
|
|
|
|
* Created by VoidArtanis on 10/22/2017
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package routes
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/VoidArtanis/go-rest-boilerplate/controllers"
|
2023-09-06 11:58:33 +02:00
|
|
|
"github.com/gin-gonic/gin"
|
2023-09-04 11:13:21 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func RegisterPublicRoutes(r *gin.Engine){
|
|
|
|
|
|
|
|
|
|
r.GET("/publicmessage", controllers.GetPublicText)
|
2023-09-06 11:58:33 +02:00
|
|
|
// r.GET("/companies", controllers.Ge)
|
2023-09-04 11:13:21 +02:00
|
|
|
}
|
|
|
|
|
|