cyrtophora

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit f284058dcae3d30a826021bda4c293299ece999d
parent 28861b3e04445e54bbbf3415a8ab7db0a59e93ed
Author: Jackson G. Kaindume <seestem@merely.tech>
Date:   Mon, 29 Aug 2022 12:58:30 +0200

[phora] make data module public

Diffstat:
Mphora/src/lib.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/phora/src/lib.rs b/phora/src/lib.rs @@ -1,5 +1,5 @@ pub mod account; pub mod api; pub mod crypto; -mod data; +pub mod data; mod validate;