Skip to main content

winterbaume_redshiftdata/
lib.rs

1pub mod backend;
2pub mod handlers;
3pub mod model;
4pub mod state;
5pub mod types;
6pub mod views;
7pub mod wire;
8
9pub use backend::{InMemoryRedshiftQueryBackend, RedshiftQueryBackend, StatementResult};
10pub use handlers::RedshiftDataService;
11pub use state::RedshiftDataState;
12pub use views::RedshiftDataStateView;