// src/server/features/operations/index.ts
// Operations feature plugin - registers check-in and linen routes

import fp from 'fastify-plugin';
import { operationsRoutes } from './operations.routes';

export default fp(async (fastify) => {
  fastify.register(operationsRoutes, { prefix: '/api/operations' });
}, { name: 'operations' });
