constants and storage entries

This commit is contained in:
Tadeo hepperle
2024-02-02 10:44:57 +01:00
parent e427529341
commit e855aac44b
11 changed files with 282 additions and 113 deletions
+4 -1
View File
@@ -12,6 +12,7 @@ extern crate alloc;
pub mod client;
pub mod config;
pub mod constants;
pub mod dynamic;
mod error;
pub mod metadata;
@@ -35,6 +36,8 @@ pub use metadata::Metadata;
mod macros;
mod marker {
/// A unit marker struct that is only used for specialized generics.
/// A unit marker struct signalling that some property is true
pub struct Yes;
}
pub use marker::Yes;