// src/server/features/notifications/index.ts
// Notifications feature plugin - registers notification routes

import fp from 'fastify-plugin';
import { notificationsRoutes } from './notifications.routes';

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