Skip to main content

axone_logic_bindings/
lib.rs

1pub mod error;
2mod query;
3mod term_parser;
4
5pub use query::{Answer, AskResponse, LogicCustomQuery, Result, Substitution};
6pub use term_parser::TermValue;
7
8// Exposed for testing only
9// Both unit tests and integration tests are compiled to native code, so everything in here does not need to compile to Wasm.
10#[cfg(not(target_arch = "wasm32"))]
11pub mod testing;