Fixed naming

This commit is contained in:
Nedim
2023-09-14 08:10:33 +02:00
parent 1353404aed
commit dcf1652dd9
8 changed files with 1 additions and 0 deletions

14
routes/public_routes.go Normal file
View File

@@ -0,0 +1,14 @@
package routes
import (
"gitlab.com/pactual1/backend/controllers"
"github.com/gin-gonic/gin"
)
func RegisterPublicRoutes(r *gin.Engine){
r.GET("/publicmessage", controllers.GetPublicText)
r.POST("/device_info", controllers.SaveDeviceInfofunc)
}