| 97 | } |
| 98 | |
| 99 | type APIItem struct { |
| 100 | Id string `json:"id"` |
| 101 | Name string `json:"name"` |
| 102 | Service auto.Label `json:"service" aolabel:"service"` |
| 103 | Team auto.Label `json:"team" aolabel:"team"` |
| 104 | Method string `json:"method"` |
| 105 | RequestPath string `json:"request_path"` |
| 106 | Model auto.Label `json:"model"` |
| 107 | UpdateTime auto.TimeLabel `json:"update_time"` |
| 108 | UseToken int `json:"use_token"` |
| 109 | Disable bool `json:"disable"` |
| 110 | } |
| 111 | |
| 112 | type Condition struct { |
| 113 | Models []*BasicInfo `json:"models"` |
nothing calls this directly
no outgoing calls
no test coverage detected