bsm/cmd/main.go

15 lines
238 B
Go
Raw Normal View History

2024-03-15 09:48:17 +08:00
package main
2024-03-15 09:51:15 +08:00
import (
2024-03-15 09:57:48 +08:00
"fmt"
"git.apinb.com/bsm-sdk/engine/vars"
2024-03-15 09:51:15 +08:00
"git.apinb.com/bsm-tools/bsm/cmd/commands"
)
2024-03-15 09:48:17 +08:00
func main() {
2024-03-15 09:57:48 +08:00
fmt.Printf("[Blocks Service Cli: %s] Version: %s \n", vars.ServiceKey, vars.VERSION)
2024-03-15 09:51:15 +08:00
2024-03-15 09:48:17 +08:00
commands.Execute()
}