8 lines
189 B
TypeScript
8 lines
189 B
TypeScript
import { FastifyInstance, FastifyPluginCallback } from "fastify";
|
|
|
|
const routes: FastifyPluginCallback = (fastify: FastifyInstance, options, next) => {
|
|
next();
|
|
};
|
|
|
|
export default routes;
|