forked from internxt/drive-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[_] chore: better finders (internxt#463)
- Loading branch information
1 parent
bed58e8
commit 219e0cd
Showing
79 changed files
with
959 additions
and
440 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/apps/hydration-api/dependency-injection/files/FilesContainer.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import { FilesSearcher } from '../../../../context/virtual-drive/files/application/FilesSearcher'; | ||
import { FirstsFileSearcher } from '../../../../context/virtual-drive/files/application/FirstsFileSearcher'; | ||
import { FilesByFolderPathSearcher } from '../../../../context/virtual-drive/files/application/FilesByFolderPathSearcher'; | ||
import { RetrieveAllFiles } from '../../../../context/virtual-drive/files/application/RetrieveAllFiles'; | ||
|
||
export interface FilesContainer { | ||
filesByFolderPathNameLister: FilesByFolderPathSearcher; | ||
filesSearcher: FilesSearcher; | ||
filesSearcher: FirstsFileSearcher; | ||
retrieveAllFiles: RetrieveAllFiles; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 2 additions & 4 deletions
6
src/apps/hydration-api/dependency-injection/folders/FoldersContainer.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
import { FolderFinder } from '../../../../context/virtual-drive/folders/application/FolderFinder'; | ||
import { FolderSearcher } from '../../../../context/virtual-drive/folders/application/FolderSearcher'; | ||
import { ParentFolderFinder } from '../../../../context/virtual-drive/folders/application/ParentFolderFinder'; | ||
import { FoldersByParentPathLister } from '../../../../context/virtual-drive/folders/application/FoldersByParentPathLister'; | ||
|
||
export interface FoldersContainer { | ||
folderFinder: FolderFinder; | ||
folderSearcher: FolderSearcher; | ||
parentFolderFinder: ParentFolderFinder; | ||
foldersByParentPathSearcher: FoldersByParentPathLister; | ||
} |
Oops, something went wrong.