metadata_util.go 276 B

12345678910
  1. package xsql
  2. const INTERNAL_MQTT_TOPIC_KEY string = "topic"
  3. const INTERNAL_MQTT_MSG_ID_KEY string = "id"
  4. var SpecialKeyMapper = map[string]string{INTERNAL_MQTT_TOPIC_KEY : "", INTERNAL_MQTT_MSG_ID_KEY : ""}
  5. func AddSpecialKeyMap(key string) {
  6. SpecialKeyMapper[key] = ""
  7. }