config.go 285 B

123456789101112131415161718192021
  1. package config
  2. import (
  3. "github.com/zeromicro/go-zero/rest"
  4. )
  5. type Config struct {
  6. rest.RestConf
  7. QiNiuConf struct {
  8. AccessKey string
  9. SecretKey string
  10. Bucket string
  11. HostUrl string
  12. }
  13. BaiduAsrConf struct {
  14. AppID string
  15. APIKey string
  16. SecretKey string
  17. }
  18. }