diff --git a/backend/src/routes/users.ts b/backend/src/routes/users.ts new file mode 100644 index 0000000..82f2351 --- /dev/null +++ b/backend/src/routes/users.ts @@ -0,0 +1,5 @@ +import { FastifyInstance } from 'fastify'; + +export default async function usersRoutes(fastify: FastifyInstance) { + // Placeholder for users routes +}