mirror of
https://github.com/logos-messaging/logos-messaging-go-bindings.git
synced 2026-02-26 08:13:10 +00:00
git-subtree-dir: third-party/nwaku git-subtree-split: d94cb7c73631ffd4b934839ba58bc622d331a135
14 lines
420 B
Nim
14 lines
420 B
Nim
import chronicles
|
|
|
|
type SubscriptionObserver* = ref object of RootObj
|
|
|
|
method onSubscribe*(
|
|
self: SubscriptionObserver, pubsubTopic: string, contentTopics: seq[string]
|
|
) {.base, gcsafe, raises: [].} =
|
|
error "onSubscribe not implemented"
|
|
|
|
method onUnsubscribe*(
|
|
self: SubscriptionObserver, pubsubTopic: string, contentTopics: seq[string]
|
|
) {.base, gcsafe, raises: [].} =
|
|
error "onUnsubscribe not implemented"
|