aplk_gw/
lib.rs

1#![no_std]
2
3mod auth;
4mod event;
5mod storage_types;
6
7pub mod contract;
8
9#[cfg(all(target_family = "wasm", feature = "testutils"))]
10compile_error!("'testutils' feature is not supported on 'wasm' target");
11
12#[cfg(any(test, feature = "testutils"))]
13pub mod testutils;
14
15#[cfg(test)]
16mod test_gateway;
17
18#[cfg(test)]
19mod test_auth;
20
21//test