Files
old-backend/routes/utility_routes.go

19 lines
282 B
Go
Raw Normal View History

/**
* Created by VoidArtanis on 10/22/2017
*/
package routes
import "github.com/gin-gonic/gin"
2023-09-18 12:27:40 +02:00
func RegisterUtilityRoutes(r *gin.Engine) {
registerRing(r)
}
2023-09-18 12:27:40 +02:00
func registerRing(r *gin.Engine) {
// Ping test
r.GET("/ping", func(c *gin.Context) {
c.String(200, "pong")
})
2023-09-18 12:27:40 +02:00
}