AcadeDoc/server/src/core/attachment/attachment.module.ts
2023-09-23 13:54:11 +01:00

7 lines
180 B
TypeScript

import { Module } from '@nestjs/common';
import { AttachmentService } from './attachment.service';
@Module({
providers: [AttachmentService],
})
export class AttachmentModule {}