(error)
| 41 | "/api/presets": getPresets, |
| 42 | }, |
| 43 | error(error) { |
| 44 | console.error(error); |
| 45 | return new Response(`Internal Error: ${error.message}`, { |
| 46 | status: 500, |
| 47 | headers: { |
| 48 | "Content-Type": "text/plain", |
| 49 | }, |
| 50 | }); |
| 51 | }, |
| 52 | }); |
| 53 | |
| 54 | console.log(`Server running on http://localhost:${PORT}`); |
nothing calls this directly
no outgoing calls
no test coverage detected