1
All checks were successful
ci/woodpecker/push/my-first-workflow Pipeline was successful

This commit is contained in:
昔念
2026-04-24 17:22:25 +08:00
parent 11bf46c7e4
commit 0ae65cee45
12 changed files with 132 additions and 75 deletions

View File

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