lssa/indexer/ffi/src/lib.rs
2026-05-07 14:32:03 +03:00

10 lines
192 B
Rust

#![allow(clippy::undocumented_unsafe_blocks, reason = "It is an FFI")]
pub use errors::OperationStatus;
pub use indexer::IndexerServiceFFI;
pub mod api;
mod client;
mod errors;
mod indexer;