(hash: string)
| 10 | } |
| 11 | |
| 12 | export async function remove(hash: string) { |
| 13 | await fetchURL(`/api/share/${hash}`, { |
| 14 | method: "DELETE", |
| 15 | }); |
| 16 | } |
| 17 | |
| 18 | export async function create( |
| 19 | url: string, |
nothing calls this directly
no test coverage detected