hospital-log/backend/api/src/log/log.module.ts
2025-10-21 17:42:59 +07:00

8 lines
162 B
TypeScript

import { Module } from '@nestjs/common';
import { LogController } from './log.controller';
@Module({
controllers: [LogController]
})
export class LogModule {}