Upstream sync

This commit is contained in:
Senad Uka
2023-09-18 12:27:40 +02:00
parent 9750aa2c37
commit 1f30f85787
30 changed files with 309 additions and 150 deletions

View File

@@ -6,13 +6,13 @@ package routes
import "github.com/gin-gonic/gin"
func RegisterUtilityRoutes(r *gin.Engine){
func RegisterUtilityRoutes(r *gin.Engine) {
registerRing(r)
}
func registerRing(r *gin.Engine){
func registerRing(r *gin.Engine) {
// Ping test
r.GET("/ping", func(c *gin.Context) {
c.String(200, "pong")
})
}
}