Files
workavia-drive/twake/backend/node/src/services/previews/web/routes.ts
T
montaghanmy 10fe6f78d1 feat: init
2023-03-23 11:03:16 +01:00

8 lines
189 B
TypeScript

import { FastifyInstance, FastifyPluginCallback } from "fastify";
const routes: FastifyPluginCallback = (fastify: FastifyInstance, options, next) => {
next();
};
export default routes;