This commit is contained in:
昔念
2026-04-25 23:05:41 +08:00
parent 415315c288
commit 4906197c77
18 changed files with 1009 additions and 31 deletions

View File

@@ -0,0 +1,20 @@
package admin
import (
"blazing/cool"
"blazing/modules/config/service"
)
type PeakTianxuanController struct {
*cool.Controller
}
func init() {
cool.RegisterController(&PeakTianxuanController{
&cool.Controller{
Prefix: "/admin/config/peak_tianxuan",
Api: []string{"Add", "Delete", "Update", "Info", "List", "Page"},
Service: service.NewPeakTianxuanService(),
},
})
}