()
| 12 | |
| 13 | // GET /markdown/new 创建新文档 |
| 14 | export function createMarkdownDoc() { |
| 15 | return http.get<MarkdownNewResponse>("/markdown/new"); |
| 16 | } |
| 17 | |
| 18 | // GET /markdown/:hash 获取文档 |
| 19 | export function fetchMarkdownDoc(hash: string) { |
nothing calls this directly
no outgoing calls
no test coverage detected