interface.go 337 B

1234567891011121314151617181920
  1. package config
  2. type InterfaceInfo struct {
  3. Docin struct {
  4. Name string
  5. Host string
  6. AppId string
  7. AppSecret string
  8. TestAccount int64
  9. DocList BaseInfo
  10. UpdateList BaseInfo
  11. DocDownload BaseInfo
  12. BuyRecord BaseInfo
  13. }
  14. }
  15. type BaseInfo struct {
  16. Name string
  17. Pathname string
  18. Method string
  19. }