Files
mini-loader/packages/examples/src/http.ts
2024-01-12 21:10:48 +01:00

13 lines
209 B
TypeScript

import { http } from '@morten-olsen/mini-loader';
import fastify from 'fastify';
const server = fastify();
server.all('*', async (req) => {
return req.url;
});
server.listen({
path: http.getPath(),
});