diff --git a/api/src/index.ts b/api/src/index.ts deleted file mode 100644 index 8786d1a1..00000000 --- a/api/src/index.ts +++ /dev/null @@ -1,20 +0,0 @@ -import Fastify from 'fastify' - -const fastify = Fastify(); - -fastify.get('/', async (request, reply) => { - return 'Hello there! 👋'; - -}) - -const start = async () => { - try { - await fastify.listen({ port: 8000 }); - console.log('Server listening on port 8000'); - } catch (err) { - console.error(err); - process.exit(1); - } -} - -start(); \ No newline at end of file