This commit is contained in:
shiran
2025-03-05 18:03:36 +08:00
commit 61be164a0b
17 changed files with 2806 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package routs
import (
"apiServer_service/apps"
"github.com/cloudwego/hertz/pkg/route"
)
func RegisterIndexRoutes(r *route.RouterGroup) {
index := r.Group("/index")
{
index.GET("/ping", apps.Ping)
}
}