()
| 165 | var weixinTagsMap, appTagsMap sync.Map |
| 166 | |
| 167 | func init() { |
| 168 | for _, tag := range weixinTags { |
| 169 | weixinTagsMap.Store(tag, true) |
| 170 | } |
| 171 | for _, tag := range appTags { |
| 172 | appTagsMap.Store(tag, true) |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | //###################################// |
| 177 |
nothing calls this directly
no outgoing calls
no test coverage detected