You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
188 B

package main
import (
_ "goskeleton/bootstrap"
cmd "goskeleton/command"
)
// 开发非http接口类服务入口
func main() {
// 设置运行模式为 cli(console)
cmd.Execute()
}