import 'fastify'; import type { Services } from './utils/utils.services.ts'; // eslint-disable-next-line declare type ExplicitAny = any; declare module 'fastify' { // eslint-disable-next-line export interface FastifyInstance { services: Services; } }