2024-05-24 11:44:03 +02:00
|
|
|
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 11:44:03 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-24 12:21:21 +02:00
|
|
|
func boom(c *cli.Context) error {
|
2024-05-24 11:44:03 +02:00
|
|
|
fmt.Println("BOOM")
|
|
|
|
|
return nil
|
|
|
|
|
}
|