Remove unused cli flag

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2023-09-01 18:51:49 +02:00
parent 7012c5e825
commit 1eb949520c
Signed by: luzifer
GPG key ID: D91C3E91E4CAD6F5

View file

@ -19,7 +19,6 @@ var (
cfg = struct { cfg = struct {
BotRespond bool `flag:"bot-respond,b" default:"false" description:"Wrap output in a respond directive for twitch-bot"` BotRespond bool `flag:"bot-respond,b" default:"false" description:"Wrap output in a respond directive for twitch-bot"`
Count int64 `flag:"count,c" default:"1" description:"How many dice to throw?"` Count int64 `flag:"count,c" default:"1" description:"How many dice to throw?"`
Lang string `flag:"lang,l" default:"de" description:"Which language shall the output have?"`
LogLevel string `flag:"log-level" default:"info" description:"Log level (debug, info, warn, error, fatal)"` LogLevel string `flag:"log-level" default:"info" description:"Log level (debug, info, warn, error, fatal)"`
Sides int64 `flag:"sides,s" default:"6" description:"How many sides does the dice have?"` Sides int64 `flag:"sides,s" default:"6" description:"How many sides does the dice have?"`
Template string `flag:"template" vardefault:"tpl" description:"Template to format the result with"` Template string `flag:"template" vardefault:"tpl" description:"Template to format the result with"`