Build a CLI tool
I choose the CLI library whihc is urfave/cli.
Let's get this package first.
go get github.com/urfave/cli
After it downloads, let's install it.
## you can change to your project name
go mod init example.com/m/v2
go mod tidy
I choose the CLI library whihc is urfave/cli.
Let's get this package first.
go get github.com/urfave/cli
After it downloads, let's install it.
## you can change to your project name
go mod init example.com/m/v2
go mod tidy