WIP: Attempt at breaking out some logic / middleware between database and view layer, to remove some code from the view controller. Not complete, maybe revert.

This commit is contained in:
2026-01-15 23:02:36 -05:00
parent 6b8cb73434
commit dbec7fb920
12 changed files with 622 additions and 223 deletions

View File

@@ -0,0 +1,9 @@
import Foundation
public struct DuctCalcClientError: Error {
public let reason: String
public init(_ reason: String) {
self.reason = reason
}
}