mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-02 14:03:06 +00:00
* Implement message id tests. * Implement relay tests. * Update import paths to use test_all.
12 lines
234 B
Nim
12 lines
234 B
Nim
import
|
|
chronicles,
|
|
chronos
|
|
|
|
import ../../../waku/waku_core/message
|
|
|
|
proc newPushHandlerFuture*(): Future[(string, WakuMessage)] =
|
|
newFuture[(string, WakuMessage)]()
|
|
|
|
proc newBoolFuture*(): Future[bool] =
|
|
newFuture[bool]()
|