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