Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/main/services/FileStorage.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
/**
* @deprecated LEGACY v1 CODE — being migrated to `FileManager`
* (`src/main/services/file/FileManager.ts`). This file will be DELETED once
* the migration is complete.
*
* Do NOT add new features or new call sites here — route new file
* functionality through `FileManager` instead. Existing consumers should be
* migrated off this module as part of the ongoing migration.
*/
import { application } from '@application'
import { loggerService } from '@logger'
import { isWin } from '@main/core/platform'
Expand Down
Loading