feat: Initialize AWS S3 client in HostService

This commit is contained in:
paritosh18
2026-02-27 18:43:37 +05:30
parent 9921edfea7
commit 84608cc025

View File

@@ -383,6 +383,9 @@ const findOrCreateCity = async (
const bucket = config.aws.bucketName;
const s3 = new AWS.S3({
region: config.aws.region,
});
@Injectable()
export class HostService {