mod tests;
pub mod auth;
pub mod convert;
pub mod error;
pub mod export;
pub mod falkor;
pub mod registry;
pub mod server;
pub mod service;
pub use auth::{AuthConfig, Authorizer, BasicCredential, Identity};
pub use error::{FlightSqlError, Result};
pub use export::{ExportReport, export_cypher, export_cypher_chunked};
#[cfg(feature = "skade")]
pub use export::{append_arrow_to_iceberg, export_cypher_to_iceberg};
pub use falkor::FalkorExecutor;
pub use registry::SchemaRegistry;
pub use server::{ServerOptions, TlsOptions, run_server, run_server_with};
pub use service::CypherFlightService;
#[inline]
pub fn functional_status(component: &str, check: &str, ok: bool, detail: &str) {
#[cfg(feature = "testmatrix")]
nornir_testmatrix::functional_status(component, check, ok, detail);
#[cfg(not(feature = "testmatrix"))]
{
let _ = (component, check, ok, detail);
}
}