2024-05-24 11:44:03 +02:00

21 lines
243 B
Go

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