Ejemplo n.º 1
0
func (this *SUserMgr) DelUser(vIUser bsn_common.IGateUser) error {
	delete(this.M_TId2User, vIUser.Id())
	return nil
}
Ejemplo n.º 2
0
func (this *SUserMgr) AddUser(vIUser bsn_common.IGateUser) error {
	this.M_TId2User[vIUser.Id()] = vIUser
	return nil
}