12 lines
128 B
Go
12 lines
128 B
Go
|
|
package config
|
||
|
|
|
||
|
|
var standalone bool
|
||
|
|
|
||
|
|
func SetStandalone() {
|
||
|
|
standalone = true
|
||
|
|
}
|
||
|
|
|
||
|
|
func Standalone() bool {
|
||
|
|
return standalone
|
||
|
|
}
|