| 2 | import http from "./http"; |
| 3 | |
| 4 | export interface UploadCodePayload { |
| 5 | author: string; |
| 6 | language: string; |
| 7 | content: string; |
| 8 | destroy_time: number; |
| 9 | } |
| 10 | |
| 11 | export interface UploadCodeResponse { |
| 12 | hash: string; |
nothing calls this directly
no outgoing calls
no test coverage detected