Skip to content

Commit 5627504

Browse files
committed
Export REDIS_PREFIX const in S3CacheService
1 parent 70b4338 commit 5627504

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

apps/api/src/s3-cache/s3-cache.service.ts

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ const ONE_DAY = 24 * 60 * 60;
88
const REDIS_PREFIX = 's3-cache:';
99
const CACHE_TIME = 30 * ONE_DAY;
1010

11+
export { REDIS_PREFIX as S3_CACHE_REDIS_PREFIX };
12+
1113
@Injectable()
1214
export class S3CacheService {
1315
private readonly logger = new Logger(S3CacheService.name);

0 commit comments

Comments
 (0)