stellar_axelar_example/
lib.rs

1#![no_std]
2
3#[cfg(any(test, feature = "testutils"))]
4extern crate std;
5
6mod contract;
7pub mod event;
8pub mod interface;
9mod storage;
10
11pub use contract::{AxelarExample, AxelarExampleClient};
12
13#[cfg(test)]
14mod tests;