init commit

This commit is contained in:
2025-04-09 15:52:24 +08:00
parent d1c5fb1162
commit a5b87653a3
31 changed files with 718 additions and 24 deletions
+9
View File
@@ -0,0 +1,9 @@
package system
import "github.com/gin-gonic/gin"
func RegisterRouter(r *gin.RouterGroup) {
r.GET("/ping", BasicInfo)
r.GET("/basic", BasicInfo)
}