1 Star 0 Fork 5

智达科技/bud-framework

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.go 822 Bytes
一键复制 编辑 原始数据 按行查看 历史
package main
import (
"context"
"errors"
"os"
cli "github.com/livebud/bud/internal/cli"
"github.com/livebud/bud/internal/errs"
"github.com/livebud/bud/internal/once"
"github.com/livebud/bud/package/log/console"
)
//go:generate go run scripts/set-package-json/main.go
// main is bud's entrypoint
func main() {
ctx := context.Background()
if err := run(ctx); err != nil {
console.Error(errs.Format(err))
os.Exit(1)
}
os.Exit(0)
}
// Run the CLI with the default configuration and return any resulting errors.
func run(ctx context.Context) error {
closer := new(once.Closer)
defer closer.Close()
// Initialize the CLI
cli := cli.New(closer)
// Run the cli
if err := cli.Parse(ctx, os.Args[1:]...); err != nil {
if errors.Is(err, context.Canceled) {
return nil
}
return err
}
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/zhidasoft_zhida025/bud-framework.git
git@gitee.com:zhidasoft_zhida025/bud-framework.git
zhidasoft_zhida025
bud-framework
bud-framework
main

搜索帮助