From 69809e284e3a8529fb0996c1ae430c6b3f6042da Mon Sep 17 00:00:00 2001 From: apetitco Date: Thu, 4 Dec 2025 15:22:42 +0100 Subject: [PATCH] (eslint): Removed trailing space at end of line 2. --- src/tic-tac-toe/src/run.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/tic-tac-toe/src/run.ts b/src/tic-tac-toe/src/run.ts index 2b8a619..3707382 100644 --- a/src/tic-tac-toe/src/run.ts +++ b/src/tic-tac-toe/src/run.ts @@ -1,8 +1,10 @@ // @file run.ts +// @brief The entrypoint to the service. // Entry point of the microservice, ran by the Dockerfile. import fastify, { FastifyInstance } from 'fastify'; +import app from './app'; // TODO: Import the microservice app @@ -18,7 +20,7 @@ const start = async () => { process.exit(143); }); // TODO: Uncomment when app.ts will be import-able. - // await fastInst.register(app); + await fastInst.register(app); await fastInst.listen({ port: 80, host: '0.0.0.0' }); } catch (err) {