Created user-role system

This commit is contained in:
HugeFrog24
2024-10-13 01:36:56 +02:00
parent 82fff17e66
commit 41c9b8075b
6 changed files with 557 additions and 0 deletions

15
go.mod
View File

@@ -1,3 +1,18 @@
module github.com/HugeFrog24/thatsky-telegram-bot
go 1.23.2
require (
github.com/go-telegram/bot v1.8.4
github.com/joho/godotenv v1.5.1
github.com/liushuangls/go-anthropic/v2 v2.8.1
gorm.io/driver/sqlite v1.5.6
gorm.io/gorm v1.25.12
)
require (
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/mattn/go-sqlite3 v1.14.22 // indirect
golang.org/x/text v0.14.0 // indirect
)