mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
12 lines
128 B
Go
12 lines
128 B
Go
package config
|
|
|
|
var standalone bool
|
|
|
|
func SetStandalone() {
|
|
standalone = true
|
|
}
|
|
|
|
func Standalone() bool {
|
|
return standalone
|
|
}
|