1 Star 0 Fork 0

Hey_m/controller

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 375 Bytes
一键复制 编辑 原始数据 按行查看 历史
mlh 提交于 2024-10-28 13:56 . init
package main
import (
"fmt"
"os"
)
func main(){
args := make([]string, len(os.Args))
copy(args, os.Args)
if len(args) == 1 {
args = append(args, "runserver")
}
command := args[1]
switch command {
case "runserver":
cmd.RunServer(args) // 注意顺序: 将会阻塞至RunServer
default:
fmt.Printf("不支持的命令 command: %s\n", command)
return
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/Hey_friends/controller.git
[email protected]:Hey_friends/controller.git
Hey_friends
controller
controller
master

搜索帮助