mirror of
https://github.com/yv1ing/gin-admin.git
synced 2025-10-24 10:12:05 +08:00
17 lines
235 B
Go
17 lines
235 B
Go
package main
|
|
|
|
import (
|
|
"gin-admin/internal/core"
|
|
"gin-admin/pkg/logger"
|
|
)
|
|
|
|
// @Author: yv1ing
|
|
// @Author: me@yvling.cn
|
|
// @Date: 2025/8/28 14:20
|
|
// @Desc: 程序主入口
|
|
|
|
func main() {
|
|
logger.SetupLogger("app.log")
|
|
core.Start()
|
|
}
|