()
| 4 | export let serveError: Error | undefined |
| 5 | |
| 6 | export async function serve() { |
| 7 | try { |
| 8 | await startDefaultServe() |
| 9 | } catch (e) { |
| 10 | serveError = e |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | export function clearServeError() { |
| 15 | serveError = undefined |
nothing calls this directly
no test coverage detected