(message map[string]interface{})
| 46 | } |
| 47 | |
| 48 | func (i *notifyServer) SettingSystemTempData(message map[string]interface{}) { |
| 49 | for k, v := range message { |
| 50 | i.SystemTempMap.Store(k, v) |
| 51 | //i.SystemTempMap[k] = v |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | func (i *notifyServer) SendNotify(name string, message map[string]interface{}) { |
| 56 | msg := make(map[string]string) |