kleinCommand/commands/template.go
2024-05-24 11:44:03 +02:00

21 lines
277 B
Go

package commands
import (
"fmt"
"github.com/urfave/cli/v2"
)
func Template() *cli.Command {
return &cli.Command{
Name: "NAME",
Usage: "USAGE OF COMMAND",
Action: template,
}
}
func template(*cli.Context) error {
fmt.Println("TEMPLATE RESPONSE")
return nil
}