12345678910111213141516171819 |
- package config
- type InterfaceInfo struct {
- Docin struct {
- Name string
- Host string
- AppId string
- AppSecret string
- DocList BaseInfo
- UpdateList BaseInfo
- DocDownload BaseInfo
- BuyRecord BaseInfo
- }
- }
- type BaseInfo struct {
- Name string
- Pathname string
- Method string
- }
|