Remove AppConfig module.

This commit is contained in:
Brent Simmons 2024-06-30 18:05:03 -07:00
parent b403a005f7
commit d712199ddf
1 changed files with 2 additions and 4 deletions

View File

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