22 lines
277 B
Go
22 lines
277 B
Go
package boom
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func Command() *cli.Command {
|
|
|
|
return &cli.Command{
|
|
Name: "boom",
|
|
Usage: "explode",
|
|
Aliases: []string{"b"},
|
|
Action: action,
|
|
}
|
|
}
|
|
|
|
func action(c *cli.Context) error {
|
|
fmt.Println("BOOM")
|
|
return nil
|
|
}
|