feat(cli): remove use of args

main
hau 2021-01-07 11:22:33 +07:00
parent d0145fda27
commit 8f43f68fe4
1 changed files with 0 additions and 2 deletions

View File

@ -41,7 +41,6 @@ const (
func main() {
a := &action{
flags: make(map[string]string),
args: make(map[string]string),
}
app := &cli.App{
@ -100,7 +99,6 @@ func main() {
type action struct {
debug bool
flags map[string]string
args map[string]string
}
func (a *action) Run(c *cli.Context) error {