(file: string, content: string)
| 28 | } |
| 29 | |
| 30 | export function putCode(file: string, content: string) { |
| 31 | return client.put<LB.ApiResponse<null>>("code", { file, content }) |
| 32 | } |
| 33 | |
| 34 | export function readFile(file: string) { |
| 35 | return client.get<LB.ApiResponse<string>>("file", { params: { file } }) |
nothing calls this directly
no outgoing calls
no test coverage detected