Skip to main content

vibesql_server/http/
mod.rs

1//! HTTP REST and GraphQL API endpoints for VibeSQL
2
3pub mod crud;
4pub mod graphql;
5pub mod rest;
6pub mod storage;
7pub mod types;
8
9pub use rest::create_http_router;
10pub use storage::create_storage_router;