diff options
| author | Castor Regex <[email protected]> | 2025-08-24 13:07:43 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-24 13:07:43 -0500 |
| commit | b03889101d81b1b6c79f627a22dca7569cb14ad6 (patch) | |
| tree | 70d6be20c1da7b744ae6d399ab3dc99ed7a96336 /main.go | |
| parent | 1a6b3671443c86ced2f7143116b3f8ff7206cef5 (diff) | |
feat(chat): add --new-chat and --count-auto flags
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -53,6 +53,16 @@ func main() { me.chats.ConfigSave() } + if argv.CountAuto { + doCountAuto() + okExit("") + } + + if argv.NewChat != nil { + doNewChat() + okExit("") + } + if argv.Stats != nil { doStats() okExit("") |
