From 8f43f68fe4c695589aad6c2e5730c8b0e556f7df Mon Sep 17 00:00:00 2001 From: hau Date: Thu, 7 Jan 2021 11:22:33 +0700 Subject: [PATCH] feat(cli): remove use of args --- main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.go b/main.go index 82a7117..0d2e0fe 100644 --- a/main.go +++ b/main.go @@ -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 {