Update Readme.md and work on the CLI

Readme.md update - added cli usage section
CLI work continues (not finished)
This commit is contained in:
bryce
2025-07-15 11:35:58 +12:00
parent c704380ee3
commit e6e6de0381
2 changed files with 15 additions and 2 deletions

View File

@@ -91,6 +91,10 @@ func dispatch(apiClient *twitchapi.Client, streamerChan string, args []string, w
}
case "title":
if len(args)<2 { fmt.Println("usage: title get|set <value>"); return }
sub := strings.ToLower(args[1])
switch sub {
case "get":
}
}
}