13 lines
166 B
Go
13 lines
166 B
Go
package model
|
|
|
|
import (
|
|
"main/constant"
|
|
"main/global"
|
|
)
|
|
|
|
var _modelMgr = new(modelMgr)
|
|
|
|
func init() {
|
|
global.RegModule(constant.MODEL_MGR_MODULE_IDX, _modelMgr)
|
|
}
|