import { Module } from '@nestjs/common'; import { MeController } from './me.controller'; /** * `MeModule` — owns `/api/me/*`, the namespace of session-derived * curated views consumed by `portal-shell`. Currently ships the * capabilities endpoint per ADR-0009 amendment; further projections * (preferences, locale resolution, etc.) land under the same prefix. */ @Module({ controllers: [MeController], }) export class MeModule {}