1
0
mirror of https://github.com/zu1k/nali.git synced 2025-01-22 21:29:02 +08:00
nali/main.go

14 lines
255 B
Go
Raw Normal View History

2020-07-17 09:41:09 +08:00
package main
2020-07-17 09:05:25 +08:00
2020-07-17 09:41:09 +08:00
import (
"github.com/zu1k/nali/cmd"
"github.com/zu1k/nali/internal/config"
"github.com/zu1k/nali/internal/constant"
_ "github.com/zu1k/nali/internal/migration"
2020-07-17 09:41:09 +08:00
)
2020-07-17 09:05:25 +08:00
func main() {
config.ReadConfig(constant.ConfigDirPath)
2020-07-17 09:05:25 +08:00
cmd.Execute()
}