()
| 39 | } |
| 40 | |
| 41 | function noCacheEndpoint() { |
| 42 | return createEndpoint( |
| 43 | { |
| 44 | GET: () => Response.json({ timestamp: Date.now() }), |
| 45 | }, |
| 46 | { route: '/no-cache' }, |
| 47 | ); |
| 48 | } |
| 49 | |
| 50 | function optOutEndpoint() { |
| 51 | return createEndpoint( |
no test coverage detected