(hash: string)
| 17 | |
| 18 | // GET /markdown/:hash 获取文档 |
| 19 | export function fetchMarkdownDoc(hash: string) { |
| 20 | return http.get<MarkdownDocResponse>(`/markdown/${hash}`); |
| 21 | } |
| 22 | |
| 23 | // POST /markdown/update 更新文档 |
| 24 | // body: { hash, content } |
nothing calls this directly
no outgoing calls
no test coverage detected