Merge pull request #282 from meshplus/feat/rm-init-cmd-flag

cmd: rm config flag in init cmd
This commit is contained in:
Aiden X 2020-12-11 11:04:43 +08:00 committed by GitHub
commit a7dc81d61c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 7 deletions

View File

@ -14,13 +14,6 @@ func initCMD() cli.Command {
Name: "init", Name: "init",
Usage: "Initialize BitXHub local configuration", Usage: "Initialize BitXHub local configuration",
Action: initialize, Action: initialize,
Flags: []cli.Flag{
cli.StringFlag{
Name: "config",
Value: "",
Usage: "BitXHub config repo path",
},
},
} }
} }