duckdb_server/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
mod app;
mod bundle;
mod cache;
mod db;
mod interfaces;
mod query;
mod websocket;

pub use app::app;
pub use cache::{get_key, retrieve};
pub use db::{ConnectionPool, Database};
pub use interfaces::{AppError, AppState, Command, QueryParams, QueryResponse};
pub use query::handle;