feat: exceptions handlers (#2855)

* feat: wip exception handlers

* feat: exception capturer

* fix: rename exception-capturer into exception-handler

* fix: remove unused variable
This commit is contained in:
Jérémy M
2023-12-08 10:18:50 +01:00
committed by GitHub
parent 6c83953633
commit cf334ada0e
38 changed files with 983 additions and 340 deletions

View File

@ -1,17 +1,20 @@
import { FactoryProvider, ModuleMetadata } from '@nestjs/common';
import { StorageType } from 'src/integrations/environment/interfaces/storage.interface';
import { S3DriverOptions } from 'src/integrations/file-storage/drivers/s3.driver';
import { LocalDriverOptions } from 'src/integrations/file-storage/drivers/local.driver';
export enum StorageDriverType {
S3 = 's3',
Local = 'local',
}
export interface S3DriverFactoryOptions {
type: StorageType.S3;
type: StorageDriverType.S3;
options: S3DriverOptions;
}
export interface LocalDriverFactoryOptions {
type: StorageType.Local;
type: StorageDriverType.Local;
options: LocalDriverOptions;
}