fork of hey-api/openapi-ts because I need some additional things
at main 10 lines 209 B view raw
1import { buildServer } from './server'; 2 3buildServer().then((fastify) => { 4 fastify.listen({ port: 3000 }, function (err) { 5 if (err) { 6 fastify.log.error(err); 7 process.exit(1); 8 } 9 }); 10});