Skip to main content

graphar_flight/
lib.rs

1mod tests;
2
3pub mod auth;
4pub mod convert;
5pub mod error;
6pub mod export;
7pub mod falkor;
8pub mod registry;
9pub mod server;
10pub mod service;
11
12pub use auth::{AuthConfig, Authorizer, BasicCredential, Identity};
13pub use error::{FlightSqlError, Result};
14pub use export::{ExportReport, export_cypher, export_cypher_chunked};
15#[cfg(feature = "skade")]
16pub use export::{append_arrow_to_iceberg, export_cypher_to_iceberg};
17pub use falkor::FalkorExecutor;
18pub use registry::SchemaRegistry;
19pub use server::{ServerOptions, TlsOptions, run_server, run_server_with};
20pub use service::CypherFlightService;