mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 12:55:00 +00:00
12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { FSService } from './fs';
|
|
import { S3 } from './s3';
|
|
import { StorageService } from './storage.service';
|
|
|
|
@Module({
|
|
providers: [S3, StorageService, FSService],
|
|
exports: [StorageService],
|
|
})
|
|
export class StorageModule {}
|