From ccce5f5bf93184b9f3f664aa9d2dd6358cdf7943 Mon Sep 17 00:00:00 2001 From: fryorcraken Date: Wed, 10 Sep 2025 12:20:00 +1000 Subject: [PATCH] export Waku API --- waku.nim | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 waku.nim diff --git a/waku.nim b/waku.nim new file mode 100644 index 000000000..35fa56ed0 --- /dev/null +++ b/waku.nim @@ -0,0 +1,15 @@ +## Main module for using nwaku as a Nimble library +## +## This module re-exports the public API for creating and managing Waku nodes +## when using nwaku as a library dependency. + +# Re-export the main types and functions +export libwaku_api, libwaku_conf + +# Import the modules to make them available +import library/libwaku_api +import library/libwaku_conf + +# Re-export essential types from waku factory +import waku/factory/waku +export Waku