11 lines
149 B
Rust
11 lines
149 B
Rust
|
#![allow(unused)]
|
||
|
|
||
|
mod abigen;
|
||
|
pub(crate) mod common;
|
||
|
#[cfg(feature = "abigen")]
|
||
|
mod console;
|
||
|
#[cfg(feature = "abigen")]
|
||
|
mod contract;
|
||
|
|
||
|
fn main() {}
|