backups/src/routes/index.ts

7 lines
186 B
TypeScript

import { FastifyPluginAsync } from 'fastify';
import upload from './upload.js';
export default (async function (fastify) {
await fastify.register(upload);
} as FastifyPluginAsync);