mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-05 23:43:07 +00:00
10 lines
280 B
Nim
10 lines
280 B
Nim
|
|
import chronicles
|
||
|
|
import ../../waku_core/message/message
|
||
|
|
|
||
|
|
type PublishObserver* = ref object of RootObj
|
||
|
|
|
||
|
|
method onMessagePublished*(
|
||
|
|
self: PublishObserver, pubsubTopic: string, message: WakuMessage
|
||
|
|
) {.base, gcsafe, raises: [].} =
|
||
|
|
error "onMessagePublished not implemented"
|