1 2 3 4 5 6 7 8 9 10
pub mod core; pub mod erc20; pub(crate) mod error; pub mod registry; pub mod stake_viewer; pub mod vault; // TODO: This only exists to keep backwards compatibility pub use core::contract::Core; pub use core::interface::ICore;