commit a06cc41f32e1c82b6953e620c498dc2ce059b5a9 parent 846e0306cad2d9fe83e553394fd5b0a871262ed4 Author: Jackson G. Kaindume <seestem@merely.tech> Date: Mon, 29 Aug 2022 11:36:16 +0200 [phora] make crypto and account modules public Diffstat:
M | phora/src/lib.rs | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/phora/src/lib.rs b/phora/src/lib.rs @@ -1,4 +1,4 @@ -mod account; -mod crypto; +pub mod account; +pub mod crypto; mod data; mod validate;