polkadot_runtime_releaser_lib/
lib.rs

1#![deny(clippy::all, missing_docs, unused_crate_dependencies)]
2
3//! Polkadot Runtime Releaser library.
4
5pub mod docker;
6pub mod error;
7pub mod hasher;
8pub mod runtime;
9pub mod rust;
10pub mod system;
11pub mod wasmer;
12
13mod prelude {
14	pub use crate::error::Error;
15
16	pub type Result<T, E = Error> = std::result::Result<T, E>;
17}