From 8b95b9f449f41b1f158815ec8d8b062069fae155 Mon Sep 17 00:00:00 2001 From: edouard Date: Mon, 15 Aug 2022 16:39:05 +0200 Subject: [PATCH] Make commands module public It allows the gui to import commands responses structs. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index ba3da80a..8910971b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ mod bitcoin; -mod commands; +pub mod commands; pub mod config; #[cfg(unix)] mod daemonize;