22 lines
277 B
Go
Raw Normal View History

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