Remove async algorithms package

This commit is contained in:
Jackson Harper
2024-02-03 15:44:49 +08:00
parent 9553540513
commit b905ff126b
2 changed files with 1 additions and 4 deletions

View File

@ -40,8 +40,7 @@ let package = Package(
"Valet",
.product(name: "SwiftGraphQL", package: "swift-graphql"),
"Models",
"Utils",
.product(name: "AsyncAlgorithms", package: "swift-async-algorithms")
"Utils"
]
),
.testTarget(name: "ServicesTests", dependencies: ["Services"]),

View File

@ -1,4 +1,3 @@
import AsyncAlgorithms
import CoreData
import CoreImage
import Foundation
@ -26,7 +25,6 @@ public final class DataService: ObservableObject {
public let networker: Networker
public let prefetchQueue = OperationQueue()
public let itemLoaderChannel = AsyncChannel<String>()
var persistentContainer: PersistentContainer
public var backgroundContext: NSManagedObjectContext