Flattened the folder structure of the Libraries now that the idea is to use precompiler processors to filter out platform-specific code.

This commit is contained in:
2023-04-28 16:54:15 +02:00
parent 8d33cdea7c
commit 847c2afc44
15 changed files with 20 additions and 0 deletions
@@ -10,6 +10,7 @@
//
//===----------------------------------------------------------------------===//
#if canImport(Combine) && canImport(CoreData)
import Combine
import CoreData
@@ -167,3 +168,4 @@ public enum Change: Hashable {
case section(SectionUpdate)
case object(ObjectUpdate)
}
#endif
@@ -10,6 +10,7 @@
//
//===----------------------------------------------------------------------===//
#if canImport(CoreData)
import CoreData
public protocol Service {
@@ -38,3 +39,4 @@ public protocol Service {
func save(childContext context: NSManagedObjectContext) throws
}
#endif