add AddChat on /start
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package config
|
||||
|
||||
type Config struct {
|
||||
MongoURL string
|
||||
DBName string
|
||||
ChatsCollectionName string
|
||||
}
|
||||
|
||||
func NewConfig() *Config {
|
||||
return &Config{
|
||||
MongoURL: "mongodb://mongo:o6bbyog3DHG0GYdu@90.189.218.191:27027",
|
||||
DBName: "butler",
|
||||
ChatsCollectionName: "chats",
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user