Files

8 lines
278 B
Go
Raw Permalink Normal View History

2026-03-30 21:42:52 +01:00
package internal
type CLI struct {
File string `arg:"" name:"file" short:"f" help:"Path to CSV redirects file." type:"path"`
2026-03-30 21:51:48 +01:00
Host string `name:"host" help:"HTTP listen host." default:"localhost"`
Port string `name:"port" short:"p" help:"HTTP listen port." default:"4000"`
2026-03-30 21:42:52 +01:00
}