Create FeedFinder module.

This commit is contained in:
Brent Simmons
2024-04-07 14:57:05 -07:00
parent 826ec7d413
commit c35187900a
26 changed files with 169 additions and 88 deletions

View File

@@ -11,7 +11,6 @@ import Foundation
struct DatabaseTableName {
static let syncStatus = "syncStatus"
}
struct DatabaseKey {
@@ -21,5 +20,4 @@ struct DatabaseKey {
static let key = "key"
static let flag = "flag"
static let selected = "selected"
}

View File

@@ -44,5 +44,4 @@ public struct SyncStatus: Hashable, Equatable, Sendable {
public func databaseDictionary() -> DatabaseDictionary {
return [DatabaseKey.articleID: articleID, DatabaseKey.key: key.rawValue, DatabaseKey.flag: flag, DatabaseKey.selected: selected]
}
}