change to monorepo

This commit is contained in:
rubikscraft
2022-02-21 23:26:40 +01:00
parent eee3ce9e9f
commit 9bb2274366
37 changed files with 399 additions and 398 deletions

View File

@@ -0,0 +1,10 @@
import { Module } from '@nestjs/common';
import { ImageManagerModule } from 'src/managers/imagemanager/imagemanager.module';
import { ImageController } from './imageroute.controller';
@Module({
imports: [ImageManagerModule],
controllers: [ImageController],
})
export class ImageModule {}