valera/config/config.go

16 lines
318 B
Go
Raw Normal View History

2023-03-11 10:17:30 +00:00
package config
type Config struct {
MongoURL string
DBName string
ChatsCollectionName string
}
func NewConfig() *Config {
return &Config{
MongoURL: "mongodb://mongo:o6bbyog3DHG0GYdu@158.160.11.219:27027",
DBName: "valera",
ChatsCollectionName: "users",
}
}