mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 13:49:41 +02:00
- Add Swagger/OpenAPI documentation at /docs endpoint - Add admin module for system-wide API key management - Add scheduler for monthly credit reset and usage cleanup - Add Docker Compose entry for Mac Mini deployment - Document all endpoints with descriptions and examples
10 lines
272 B
TypeScript
10 lines
272 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { AdminController } from './admin.controller';
|
|
import { AdminService } from './admin.service';
|
|
|
|
@Module({
|
|
controllers: [AdminController],
|
|
providers: [AdminService],
|
|
exports: [AdminService],
|
|
})
|
|
export class AdminModule {}
|