8 lines
212 B
TypeScript
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)
|
|
}
|