mirror of
https://github.com/zu1k/nali.git
synced 2025-01-22 13:19:02 +08:00
c0643f7731
Signed-off-by: zu1k <i@zu1k.com>
13 lines
208 B
Go
13 lines
208 B
Go
package main
|
|
|
|
import (
|
|
"github.com/zu1k/nali/cmd"
|
|
"github.com/zu1k/nali/internal/config"
|
|
"github.com/zu1k/nali/internal/constant"
|
|
)
|
|
|
|
func main() {
|
|
config.ReadConfig(constant.WorkDirPath)
|
|
cmd.Execute()
|
|
}
|