9 lines
180 B
Rust
Raw Normal View History

2026-04-02 15:49:42 +03:00
#![allow(clippy::undocumented_unsafe_blocks, reason = "It is an FFI")]
pub use errors::OperationStatus;
pub use indexer::IndexerServiceFFI;
2026-04-03 15:50:24 +03:00
pub mod api;
2026-04-02 15:49:42 +03:00
mod errors;
mod indexer;