mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-05-08 11:05:59 +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
|
||
|
|
}
|