This commit is contained in:
yanweidong 2024-03-15 09:48:17 +08:00
parent fcf529cb8d
commit 502f9f3286
11 changed files with 16 additions and 8 deletions

8
.actions Normal file
View File

@ -0,0 +1,8 @@
# Actions 编译部署配置文件,文件格式:YAML
#
# 微服务相关配置
service:
origin: bsm
image: golang:1.22.0-bookworm
describe: system cli cmd

View File

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

7
cmd/main.go Normal file
View File

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

View File

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