bsm/cmd/main.go

13 lines
157 B
Go
Raw Permalink Normal View History

2024-03-15 09:48:17 +08:00
package main
2024-03-15 09:51:15 +08:00
import (
"git.apinb.com/bsm-sdk/engine/cmd"
"git.apinb.com/bsm-tools/bsm/cmd/commands"
)
2024-03-15 09:48:17 +08:00
func main() {
2024-03-15 09:51:15 +08:00
cmd.NewCmd()
2024-03-15 09:48:17 +08:00
commands.Execute()
}