2024-05-24 12:21:21 +02:00

22 lines
274 B
Go

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