sandwitchboard/cmd.go
2024-07-06 06:28:05 +02:00

14 lines
556 B
Go

package main
type generateCmd struct {
Path string `arg:"" help:"Path to the directory with the recipes."`
Output string `default:"dist" help:"Path to the directory where the files will be generated."`
NameKey string `default:"name" short:"n" help:"The metadata key for the recipe name."`
Title string `default:"Recipes directory" short:"t" help:"The title to use at the recipe index."`
}
var cli struct {
Debug bool `help:"Print debug information."`
Generate generateCmd `cmd:"" help:"Generate the web files for a directory of recipes."`
}