2 files changed, 7 insertions, 7 deletions
diff --git a/src/util/index.js b/src/util/index.js
index 9a6c774..6b51d7b 100644
--- a/src/util/index.js
+++ b/src/util/index.js
@@ -1 +1 @@
-export * from "./secretUtils.js";
+export * from './secretUtils.js';
diff --git a/src/util/secretUtils.js b/src/util/secretUtils.js
index 33e5fef..bbad8ca 100644
--- a/src/util/secretUtils.js
+++ b/src/util/secretUtils.js
@@ -1,9 +1,9 @@
-import fs from "node:fs/promises";
+import fs from 'node:fs/promises';
export async function readSecret(path) {
- if (!path) {
- throw new Error("Path to secret file is required");
- }
- const content = await fs.readFile(path, "utf8");
- return content.trim();
+ if (!path) {
+ throw new Error('Path to secret file is required');
+ }
+ const content = await fs.readFile(path, 'utf8');
+ return content.trim();
}
|