| 8 | } |
| 9 | |
| 10 | export interface HttpTestResponse { |
| 11 | status: string; |
| 12 | status_code: number; |
| 13 | header: Record<string, string[]>; |
| 14 | body: string; |
| 15 | } |
| 16 | |
| 17 | export function sendHttpTest(payload: HttpTestPayload) { |
| 18 | return http.post<HttpTestResponse>("/httptest/do", payload); |
nothing calls this directly
no outgoing calls
no test coverage detected