extend.go 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package conf
  2. var ExtConfig Extend
  3. // Extend 扩展配置
  4. //
  5. // extend:
  6. // demo:
  7. // name: demo-name
  8. //
  9. // 使用方法: config.ExtConfig......即可!!
  10. type Extend struct {
  11. SubMail SubMail `yaml:"subMail"`
  12. Qiniu Qiniu `yaml:"qiniu"`
  13. Applet Applet `yaml:"applet"`
  14. Nats Nats `yaml:"nats"`
  15. Amap Amap `yaml:"amap"`
  16. Apk Apk `yaml:"apk"`
  17. Service Service `yaml:"service"`
  18. }
  19. type SubMail struct {
  20. Appid string `json:"appid"`
  21. Signature string `json:"signature"`
  22. }
  23. type Qiniu struct {
  24. // Endpoint 访问域名
  25. Endpoint string `json:"endpoint"`
  26. // AccessKeyID AK `json:""
  27. AccessKeyID string `json:"accessKeyID"`
  28. // AccessKeySecret AKS `json:""
  29. AccessKeySecret string `json:"accessKeySecret"`
  30. // BucketName 桶名称 `json:""
  31. BucketName string `json:"bucketName"`
  32. }
  33. type Applet struct {
  34. Appid string `json:"appid"`
  35. AppSecret string `json:"appSecret"`
  36. }
  37. type Nats struct {
  38. Url string `json:"url"`
  39. }
  40. type Amap struct {
  41. Key string `json:"key"`
  42. }
  43. type Apk struct {
  44. Path string `json:"path"`
  45. }
  46. type Service struct {
  47. Domain string `json:"domain"`
  48. }