| 1 | import http from "./http"; |
| 2 | |
| 3 | export interface HttpTestPayload { |
| 4 | method: string; |
| 5 | url: string; |
| 6 | header: Record<string, string>; |
| 7 | body: string; |
| 8 | } |
| 9 | |
| 10 | export interface HttpTestResponse { |
| 11 | status: string; |
nothing calls this directly
no outgoing calls
no test coverage detected