all-tg-bot/config/config.go

16 lines
318 B
Go
Raw Permalink Normal View History

2022-04-24 19:35:18 +00:00
package config
type Config struct {
MongoURL string
DBName string
ChatsCollectionName string
}
func NewConfig() *Config {
return &Config{
2023-03-11 07:07:42 +00:00
MongoURL: "mongodb://mongo:o6bbyog3DHG0GYdu@158.160.11.219:27027",
2022-04-24 19:35:18 +00:00
DBName: "butler",
ChatsCollectionName: "chats",
}
}