commit
a83e938deb
10
usermngmt.go
10
usermngmt.go
|
@ -86,3 +86,13 @@ func Init(config Config) (*Service, error) {
|
||||||
func GetInstance() *Service {
|
func GetInstance() *Service {
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetConnectOptions ...
|
||||||
|
func GetConnectOptions(Host, DBName string) mongodb.Config {
|
||||||
|
return mongodb.Config{
|
||||||
|
Host: Host,
|
||||||
|
DBName: DBName,
|
||||||
|
Standalone: &mongodb.ConnectStandaloneOpts{},
|
||||||
|
TLS: &mongodb.ConnectTLSOpts{},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue