tg chat id is int64

This commit is contained in:
Pasha 2024-12-02 11:18:22 +03:00 committed by skeris
parent 2025d7ba40
commit 92367c34d4

@ -17,7 +17,7 @@ type Config struct {
RedisHost string `env:"REDIS_HOST" envDefault:"localhost:6379"`
RedisPassword string `env:"REDIS_PASSWORD" envDefault:"admin"`
RedisDB int `env:"REDIS_DB" envDefault:"2"`
TgChatID uint64 `env:"TELEGRAM_CHAT_ID" envDefault:"1001344671794"`
TgChatID int64 `env:"TELEGRAM_CHAT_ID" envDefault:"1001344671794"`
HTTPHost string `env:"HTTP_HOST" envDefault:"localhost"`
HTTPPort string `env:"HTTP_PORT" envDefault:"3000"`
Database mongo.Configuration