mirror of
https://github.com/nxtrace/nali
synced 2024-11-22 18:34:22 +00: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()
|
|
}
|