mirror of
https://github.com/flipped-aurora/gin-vue-admin.git
synced 2026-09-22 04:43:00 +00:00
18 lines
250 B
Go
18 lines
250 B
Go
package main
|
|
|
|
import (
|
|
"gin-vue-admin/core"
|
|
"gin-vue-admin/global"
|
|
"gin-vue-admin/init"
|
|
//"runtime"
|
|
)
|
|
|
|
func main() {
|
|
init.Mysql()
|
|
init.DBTables()
|
|
// 程序结束前关闭数据库链接
|
|
defer global.GVA_DB.Close()
|
|
|
|
core.RunWindowsServer()
|
|
}
|