This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
2023-01-11 00:24:19 +01:00

8 lines
212 B
TypeScript

import type { FastifyPluginAsync } from 'fastify'
import { uploadsService } from './uploads/index.js'
export const services: FastifyPluginAsync = async (fastify) => {
await fastify.register(uploadsService)
}