hospital-log/backend/api/src/log/log.module.ts

8 lines
162 B
TypeScript
Raw Normal View History

2025-10-21 10:42:59 +00:00
import { Module } from '@nestjs/common';
import { LogController } from './log.controller';
@Module({
controllers: [LogController]
})
export class LogModule {}