summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorCastor Regex <[email protected]>2025-08-24 13:07:43 -0500
committerJeff Carr <[email protected]>2025-08-24 13:07:43 -0500
commitb03889101d81b1b6c79f627a22dca7569cb14ad6 (patch)
tree70d6be20c1da7b744ae6d399ab3dc99ed7a96336 /main.go
parent1a6b3671443c86ced2f7143116b3f8ff7206cef5 (diff)
feat(chat): add --new-chat and --count-auto flags
Diffstat (limited to 'main.go')
-rw-r--r--main.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/main.go b/main.go
index c0dbf79..57c91e2 100644
--- a/main.go
+++ b/main.go
@@ -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("")