package orm import ( "sync" ) type ModelMap struct { Map map[string]*Model Mux sync.RWMutex }