mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-04 00:10:25 +08:00
16 lines
330 B
Go
16 lines
330 B
Go
package main
|
|
|
|
import (
|
|
"mayfly-go/base/ctx"
|
|
"mayfly-go/base/global"
|
|
"mayfly-go/base/starter"
|
|
"mayfly-go/devops/initialize"
|
|
)
|
|
|
|
func main() {
|
|
ctx.UseBeforeHandlerInterceptor(ctx.PermissionHandler)
|
|
ctx.UseAfterHandlerInterceptor(ctx.LogHandler)
|
|
global.Db = starter.GormMysql()
|
|
starter.RunWebServer(initialize.InitRouter())
|
|
}
|