rabbitmq 操作库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 2 години
123456789101112131415
  1. package md
  2. import (
  3. "code.fnuoos.com/go_rely_warehouse/zyos_go_mq.git/rabbit"
  4. )
  5. //Mq配置结构体
  6. type MQCfg struct {
  7. Host string `json:"host"`
  8. Port string `json:"port"`
  9. User string `json:"user"`
  10. Pwd string `json:"pwd"`
  11. Uri string `json:"uri"`
  12. Pool *rabbit.Pool `json:"pool"`
  13. }