code/pallets/swap/src/lib.rs

lib.rs

12 lines · 194 bytes · 19a6485969RawGitHub
#![cfg_attr(not(feature = "std"), no_std)]

pub mod pallet;
pub mod weights;

pub use pallet::*;

#[cfg(feature = "runtime-benchmarks")]
pub mod benchmarking;

#[cfg(test)]
pub(crate) mod mock;