This commit is contained in:
yanweidong 2024-03-15 09:51:15 +08:00
parent 502f9f3286
commit 1ed74aa712
8 changed files with 13 additions and 8 deletions

View File

@ -1,4 +1,4 @@
package cmd
package commands
import (
"fmt"

View File

@ -1,4 +1,4 @@
package cmd
package commands
import (
"fmt"

View File

@ -1,4 +1,4 @@
package cmd
package commands
import (
"encoding/json"

View File

@ -1,4 +1,4 @@
package cmd
package commands
import (
"fmt"

View File

@ -1,4 +1,4 @@
package cmd
package commands
import (
"encoding/json"

View File

@ -1,4 +1,4 @@
package cmd
package commands
import (
"fmt"

View File

@ -1 +1 @@
package cmd
package commands

View File

@ -1,7 +1,12 @@
package main
import "git.apinb.com/bsm-tools/bsm/cmd/commands"
import (
"git.apinb.com/bsm-sdk/engine/cmd"
"git.apinb.com/bsm-tools/bsm/cmd/commands"
)
func main() {
cmd.NewCmd()
commands.Execute()
}