cli: Refactor even more code out of cli package

Quite honestly, I'm trying to clean things up, and removing anything
non-consequential will help!
This commit is contained in:
James Shubin
2024-02-25 19:03:14 -05:00
parent c37ff3efce
commit 71c54ab212
8 changed files with 36 additions and 25 deletions

View File

@@ -23,6 +23,7 @@ import (
"os"
"github.com/purpleidea/mgmt/cli"
cliUtil "github.com/purpleidea/mgmt/cli/util"
"go.etcd.io/etcd/server/v3/etcdmain"
)
@@ -59,7 +60,7 @@ func main() {
Program: program,
Version: version,
Copying: copying,
Flags: cli.Flags{
Flags: cliUtil.Flags{
Debug: Debug,
Verbose: Verbose,
},