(ctx context.Context, method, path string, body interface{})
| 30 | // APIClient: identity is opaque so business code can't bypass pre-flight checks. |
| 31 | type APIClient interface { |
| 32 | CallAPI(ctx context.Context, method, path string, body interface{}) (json.RawMessage, error) |
| 33 | } |
| 34 | |
| 35 | type ParamType string |
no outgoing calls