Resolved conflicts.

This commit is contained in:
piyushkag
2025-04-29 17:50:46 +05:30
parent ffbf296c63
commit b884f5aeff
3 changed files with 18 additions and 13 deletions

View File

@@ -21,4 +21,5 @@ AmazonS3Service {
UploadFileOnAmazonS3Response copyFile(String fileName, String oldS3Path, String newS3Path);
String extractS3KeyFromUrl(String url);
}

View File

@@ -217,4 +217,9 @@ public class AmazonS3ServiceImpl implements AmazonS3Service {
}
}
public String extractS3KeyFromUrl(String url) {
return url.replace(s3Url, "");
}
}