14 lines
215 B
Go
Raw Permalink Normal View History

2024-03-29 18:05:09 +08:00
package cmd
import (
"context"
"github.com/sirupsen/logrus"
)
func Run(ctx context.Context) {
if err := root.ExecuteContext(ctx); err != nil {
logrus.Debugf("cmd.Run: execute with err=%v", err)
return
}
}