2026-06-23 01:20:09 +02:00
|
|
|
## Package entry point for using Logos Messaging as a Nimble library.
|
2026-01-30 01:06:00 +01:00
|
|
|
##
|
2026-06-23 01:20:09 +02:00
|
|
|
## This root module is a thin aggregator, following the standard Nimble layout:
|
|
|
|
|
## the implementation lives under `./logos_delivery/`, and importing the package
|
|
|
|
|
## name re-exports `LogosDelivery` together with every per-layer public API.
|
|
|
|
|
##
|
|
|
|
|
## See `logos_delivery/logos_delivery.nim` for `LogosDelivery`, the pure
|
|
|
|
|
## concentrator that owns one instance of each API layer
|
|
|
|
|
##
|
|
|
|
|
## Waku <- MessagingClient <- ReliableChannelManager
|
|
|
|
|
##
|
|
|
|
|
## and drives their shared `new` / `start` / `stop` lifecycle.
|
2025-10-01 16:31:34 +10:00
|
|
|
|
2026-06-23 01:20:09 +02:00
|
|
|
import ./logos_delivery/logos_delivery as logos_delivery_impl
|
|
|
|
|
export logos_delivery_impl
|