审查视图

pkg/port/beego/routers/template_router.go 397 字节
郑周 authored
1 2 3 4 5 6 7 8 9
package routers

import (
	"github.com/beego/beego/v2/server/web"
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/port/beego/controllers"
)

func init() {
	web.Router("/templates/tpl_template_question.xlsx", &controllers.TemplateImplController{}, "Get:TemplateQuestion")
郑周 authored
10 11
	web.Router("/templates/tpl_template_user.xlsx", &controllers.TemplateImplController{}, "Get:TemplateParentUser")
郑周 authored
12
}