diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2024-11-28 19:17:34 -0500 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2024-11-28 19:17:34 -0500 |
| commit | 0efd5eff2b3b503a1cab48205a5240b08a07bacc (patch) | |
| tree | ef2674eab3c36d317f7abf153f89063333cb70eb | |
| parent | merge: Fix Megalodon unit tests on Windows (!787) (diff) | |
| download | sharkey-0efd5eff2b3b503a1cab48205a5240b08a07bacc.tar.gz sharkey-0efd5eff2b3b503a1cab48205a5240b08a07bacc.tar.bz2 sharkey-0efd5eff2b3b503a1cab48205a5240b08a07bacc.zip | |
remove unused import from InternalStorageService
| -rw-r--r-- | packages/backend/src/core/InternalStorageService.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/core/InternalStorageService.ts b/packages/backend/src/core/InternalStorageService.ts index f7371f8e79..5b179baf41 100644 --- a/packages/backend/src/core/InternalStorageService.ts +++ b/packages/backend/src/core/InternalStorageService.ts @@ -4,7 +4,7 @@ */ import * as fs from 'node:fs'; -import { copyFile, mkdir, unlink, writeFile } from 'node:fs/promises'; +import { copyFile, unlink, writeFile } from 'node:fs/promises'; import * as Path from 'node:path'; import { fileURLToPath } from 'node:url'; import { dirname } from 'node:path'; |