10 lines
202 B
Plaintext
10 lines
202 B
Plaintext
module Nostr
|
|
class Subscription
|
|
attr_reader id: String
|
|
attr_reader filter: Filter
|
|
|
|
def initialize: (filter: Filter, ?id: String) -> void
|
|
def ==: (Subscription other) -> bool
|
|
end
|
|
end
|