mirror of
https://github.com/logos-messaging/logos-delivery.git
synced 2026-03-06 17:13:35 +00:00
14 lines
251 B
Nim
14 lines
251 B
Nim
|
|
when (NimMajor, NimMinor) < (1, 4):
|
||
|
|
{.push raises: [Defect].}
|
||
|
|
else:
|
||
|
|
{.push raises: [].}
|
||
|
|
|
||
|
|
import
|
||
|
|
chronos
|
||
|
|
|
||
|
|
import
|
||
|
|
../topics,
|
||
|
|
../message
|
||
|
|
|
||
|
|
type FilterPushHandler* = proc(pubsubTopic: PubsubTopic, message: WakuMessage) {.async, gcsafe, closure.}
|