interface.go 317 B

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