22 lines
274 B
Go
Raw Normal View History

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