ceres_runtime/
lib.rs

1#![allow(dead_code)]
2#![cfg_attr(not(feature = "std"), no_std)]
3
4mod method;
5mod result;
6mod runtime;
7pub mod util;
8
9type StorageKey = [u8; 32];
10
11pub use self::{
12    result::{Error, Result},
13    runtime::Runtime,
14};