Use AppConfig in Images module.

This commit is contained in:
Brent Simmons 2024-06-26 23:11:22 -07:00
parent aaf8268bbd
commit 840147aee3

View File

@ -13,7 +13,8 @@ let package = Package(
dependencies: [
.package(path: "../Core"),
.package(path: "../Articles"),
.package(path: "../Account")
.package(path: "../Account"),
.package(path: "../AppConfig")
],
targets: [
.target(
@ -21,7 +22,8 @@ let package = Package(
dependencies: [
"Core",
"Articles",
"Account"
"Account",
"AppConfig"
]
// Disabled due to Sendable warnings about RSImage (NSImage).
// TODO: check if Swift 6 will allow us to deal with these warnings.