* replace TypeORM with Kysely query builder * refactor migrations * other changes and fixes
14 lines
530 B
TypeScript
14 lines
530 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { AttachmentService } from './attachment.service';
|
|
import { AttachmentController } from './attachment.controller';
|
|
import { StorageModule } from '../../integrations/storage/storage.module';
|
|
import { UserModule } from '../user/user.module';
|
|
import { WorkspaceModule } from '../workspace/workspace.module';
|
|
|
|
@Module({
|
|
imports: [StorageModule, UserModule, WorkspaceModule],
|
|
controllers: [AttachmentController],
|
|
providers: [AttachmentService],
|
|
})
|
|
export class AttachmentModule {}
|