Files
old-backend/routes/publicRoutes.go

17 lines
261 B
Go
Raw Normal View History

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