| 8 | ) |
| 9 | |
| 10 | type API struct { |
| 11 | ID string |
| 12 | Name string |
| 13 | Service string |
| 14 | Path string |
| 15 | Description string |
| 16 | Timeout int |
| 17 | Retry int |
| 18 | Model string |
| 19 | Provider string |
| 20 | CreateAt time.Time |
| 21 | UpdateAt time.Time |
| 22 | UseToken int |
| 23 | Creator string |
| 24 | Updater string |
| 25 | Type int |
| 26 | AdditionalConfig map[string]interface{} |
| 27 | Disable bool |
| 28 | } |
| 29 | |
| 30 | type Create struct { |
| 31 | ID string |
nothing calls this directly
no outgoing calls
no test coverage detected