Redmage/server/routes/api/api.go

9 lines
151 B
Go
Raw Normal View History

2024-04-07 12:11:25 +07:00
package api
import "github.com/go-chi/chi/v5"
func Register(router chi.Router) {
router.Get("/", HealthCheck)
router.Get("/health", HealthCheck)
}