/** * @license * Copyright Andrey Chalkin (https://github.com/L2jLiga). All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/L2jLiga/fastify-decorators/blob/master/LICENSE */ export { Service } from './service.js'; export { Inject } from './inject.js'; export { Initializer, readyMap } from './initializer.js'; export { Hook } from './hook.js'; export { ErrorHandler } from './error-handler.js'; export { Controller } from './controller.js'; export { ALL, DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT } from './request-handlers.js';