mirror of
https://github.com/datarhei/core.git
synced 2025-12-24 13:07:56 +08:00
12 lines
127 B
Go
12 lines
127 B
Go
package global
|
|
|
|
var coreid string = ""
|
|
|
|
func SetCoreID(id string) {
|
|
coreid = id
|
|
}
|
|
|
|
func GetCoreID() string {
|
|
return coreid
|
|
}
|