1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#![allow(dead_code)]
#![cfg_attr(not(feature = "std"), no_std)]

mod method;
mod result;
mod runtime;
pub mod util;

type StorageKey = [u8; 32];

pub use self::{
    result::{Error, Result},
    runtime::Runtime,
};