2024-05-24 19:41:44 +02:00

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
}