| 10 | ) |
| 11 | |
| 12 | type APIHostResolver interface { |
| 13 | BaseRESTURL(ctx context.Context) (*url.URL, error) |
| 14 | GraphqlURL(ctx context.Context) (*url.URL, error) |
| 15 | UploadURL(ctx context.Context) (*url.URL, error) |
| 16 | RawURL(ctx context.Context) (*url.URL, error) |
| 17 | AuthorizationServerURL(ctx context.Context) (*url.URL, error) |
| 18 | } |
| 19 | |
| 20 | type APIHost struct { |
| 21 | restURL *url.URL |
no outgoing calls
no test coverage detected