feat(cli): remove use of args
parent
d0145fda27
commit
8f43f68fe4
2
main.go
2
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 {
|
||||
|
|
Loading…
Reference in New Issue