Merge branch 'master' into local-relay-model

Logical merge errors fixed manually

Changelog-None
Signed-off-by: Daniel D’Aquino <daniel@daquino.me>
This commit is contained in:
Daniel D’Aquino
2025-10-22 11:56:58 -07:00
22 changed files with 790 additions and 81 deletions
+16
View File
@@ -0,0 +1,16 @@
struct FavoriteNotify: Notify {
typealias Payload = Void
var payload: Void
}
extension NotifyHandler {
static var favoriteUpdated: NotifyHandler<FavoriteNotify> {
.init()
}
}
extension Notifications {
static func favoriteUpdated() -> Notifications<FavoriteNotify> {
.init(.init(payload: ()))
}
}