Fixed issue #2: [SQS or Terraform] Queues are not being created

This commit is contained in:
2023-03-22 16:02:02 -04:00
parent e1db34e7c1
commit 8389db4367
13 changed files with 234 additions and 19 deletions

View File

@@ -0,0 +1,9 @@
export const getPathFromUrl = (url: string) => {
try {
const obj = new URL(url);
return obj.pathname;
} catch (err) {}
return url;
}