config.go 217 B

12345678910111213141516
  1. package config
  2. import "github.com/zeromicro/go-zero/rest"
  3. type Config struct {
  4. rest.RestConf
  5. Nsq struct {
  6. NsqLookupIp string
  7. NsqTopic string
  8. NsqChannel string
  9. }
  10. Mysql struct {
  11. Datasource string
  12. }
  13. }