damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

NewMutesNotify.swift (477B)


      1 //
      2 //  NewMutesNotify.swift
      3 //  damus
      4 //
      5 //  Created by William Casarin on 2023-07-30.
      6 //
      7 
      8 import Foundation
      9 
     10 struct NewMutesNotify: Notify {
     11     typealias Payload = Set<MuteItem>
     12     var payload: Payload
     13 }
     14 
     15 extension NotifyHandler {
     16     static var new_mutes: NotifyHandler<NewMutesNotify> {
     17         .init()
     18     }
     19 }
     20 
     21 extension Notifications {
     22     static func new_mutes(_ pubkeys: Set<MuteItem>) -> Notifications<NewMutesNotify> {
     23         .init(.init(payload: pubkeys))
     24     }
     25 }