mirror of
https://github.com/logos-messaging/logos-delivery.git
synced 2026-06-05 13:39:59 +00:00
12 lines
248 B
Nim
12 lines
248 B
Nim
{.push raises: [].}
|
|
|
|
import std/sets
|
|
import ../waku_core
|
|
|
|
type ShardSubscription* = object
|
|
contentTopics*: HashSet[ContentTopic]
|
|
directShardSub*: bool
|
|
## shard subscribed directly (PubsubSub), independent of content-topic interest
|
|
|
|
{.pop.}
|