Moved BindingGenerator from gen html project. It makes more sense here.

This commit is contained in:
2025-10-25 00:06:22 -04:00
parent 58a8419984
commit 603a0aa0e3
141 changed files with 12738 additions and 7 deletions

View File

@@ -8,7 +8,9 @@
import Foundation
final class AppError: LocalizedError, Sendable {
final class AppError: LocalizedError, Sendable, CustomStringConvertible {
var description: String { get {message}}
let message: String
@@ -28,4 +30,13 @@ final class AppError: LocalizedError, Sendable {
return message
}
}
/// A localized message describing the reason for the failure.
var failureReason: String? { get { message } }
var localizedDescription: String? {
get {
message
}
}
}