2023-08-04 16:26:43 +01:00
|
|
|
import { Module } from '@nestjs/common';
|
|
|
|
|
import { UserModule } from './user/user.module';
|
2023-08-05 16:58:34 +01:00
|
|
|
import { AuthModule } from './auth/auth.module';
|
2023-08-07 18:16:51 +01:00
|
|
|
import { WorkspaceModule } from './workspace/workspace.module';
|
2023-08-22 19:48:57 +01:00
|
|
|
import { PageModule } from './page/page.module';
|
2023-09-23 13:54:11 +01:00
|
|
|
import { StorageModule } from './storage/storage.module';
|
|
|
|
|
import { AttachmentModule } from './attachment/attachment.module';
|
|
|
|
|
import { EnvironmentModule } from '../environment/environment.module';
|
2023-08-04 16:26:43 +01:00
|
|
|
|
|
|
|
|
@Module({
|
2023-09-23 13:54:11 +01:00
|
|
|
imports: [
|
|
|
|
|
UserModule,
|
|
|
|
|
AuthModule,
|
|
|
|
|
WorkspaceModule,
|
|
|
|
|
PageModule,
|
|
|
|
|
StorageModule.forRootAsync({
|
|
|
|
|
imports: [EnvironmentModule],
|
|
|
|
|
}),
|
|
|
|
|
AttachmentModule,
|
|
|
|
|
],
|
2023-08-04 16:26:43 +01:00
|
|
|
})
|
|
|
|
|
export class CoreModule {}
|