代码拉取完成,页面将自动刷新
package main
import (
"fmt"
"gitee.com/go-mao/mao/demo/app/modules/demo"
"gitee.com/go-mao/mao/frame"
)
func main() {
sev := frame.NewServer(new(App))
sev.Run()
}
type App struct {
}
// 程序启动时执行
func (this *App) Init(m *frame.WebEngine) {
}
// 配置文件
func (this *App) Config() any {
return "./config.ini"
}
// 模块
func (this *App) Modules() []frame.ModuleInterface {
return []frame.ModuleInterface{
demo.New(),
}
}
// 安装执行脚本
func (this *App) Install() error {
return nil
}
// 系统版本
func (this *App) Version() string {
return "1.0.0"
}
// 权限验证
func (this *App) CheckPermission(w *frame.Webline, code, name string) {
fmt.Println(code, name)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。