Skip to content

Commit 11006f4

Browse files
authored
refact: decoupling the data fetching operation using providers to give the algorithms the flexibility to operate on different data entities
2 parents 29fdfa2 + 2686d69 commit 11006f4

File tree

2 files changed

+102
-321
lines changed

2 files changed

+102
-321
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import Foundation
2+
3+
struct SearchableItem: Sendable {
4+
let id: String
5+
let title: String
6+
let content: String?
7+
let metadata: [String: String]?
8+
let path: String
9+
}

0 commit comments

Comments
 (0)