package router import ( "git.links123.net/links123.com/monitor_status/cmd/http/handler" ) func registerV1Router() { // All user can access v1NoAuth := r.Group("/v1") { v1NoAuth.GET("/hello", handler.Healthy) } }