http urls monitor.

v1.go 221B

1234567891011121314
  1. package router
  2. import (
  3. "git.links123.net/links123.com/monitor_status/cmd/http/handler"
  4. )
  5. func registerV1Router() {
  6. // All user can access
  7. v1NoAuth := r.Group("/v1")
  8. {
  9. v1NoAuth.GET("/hello", handler.Healthy)
  10. }
  11. }