Skip to main content

interstice_abi/
lib.rs

1mod authority;
2mod codec;
3mod error;
4mod host_calls;
5mod interstice_type;
6mod interstice_type_def;
7mod interstice_value;
8mod query_context;
9mod reducer_context;
10mod row;
11mod schema;
12
13pub use authority::*;
14pub use codec::*;
15pub use error::*;
16pub use host_calls::*;
17pub use interstice_abi_macros;
18pub use interstice_type::*;
19pub use interstice_type_def::*;
20pub use interstice_value::*;
21pub use query_context::*;
22pub use reducer_context::*;
23pub use row::*;
24pub use schema::*;
25
26pub const ABI_VERSION: u16 = 1;