Add MediaUpload entity & Media module

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2020-10-13 10:33:54 +02:00
parent 0a0732049a
commit f01c7dbbe2
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3
3 changed files with 75 additions and 0 deletions

View file

@ -0,0 +1,8 @@
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { MediaUpload } from './media-upload.entity';
@Module({
imports: [TypeOrmModule.forFeature([MediaUpload])],
})
export class MediaModule {}