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.

34 lines
568 B

4 years ago
  1. // @Time : 2020/7/9 14:23
  2. // @Author : 黑白配
  3. // @File : index.go
  4. // @PackageName:global
  5. // @Description:
  6. package global
  7. import (
  8. "git.ouxuan.net/3136352472/wxpay/src/config"
  9. "git.ouxuan.net/3136352472/wxpay/src/entity"
  10. )
  11. var V3 = config.V3{
  12. MchID: "",
  13. ClientKeyPath: "",
  14. SerialNo: "",
  15. }
  16. var V2 = entity.PayConfig{
  17. AppID: "",
  18. MchID: "",
  19. SubAppID: "",
  20. SubMchID: "",
  21. PayNotify: "",
  22. RefundNotify: "",
  23. Secret: "",
  24. APIClientPath: entity.APIClientPath{
  25. Cert: "",
  26. Key: "",
  27. Root: "",
  28. },
  29. SerialNo: "",
  30. }