1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! Routa Core — Transport-agnostic domain logic for the Routa.js platform.
//!
//! This crate contains the core business logic, data models, stores, and
//! protocol integrations. It has **no HTTP framework dependency** by default,
//! making it suitable for use in:
//!
//! - HTTP servers (via `routa-server`)
//! - Tauri desktop apps (direct IPC)
//! - CLI tools
//! - JS bindgen (via napi-rs or wasm-bindgen)
//!
//! # Feature Flags
//!
//! - `axum` — Enables `IntoResponse` impl on `ServerError` for use in axum handlers.
// Convenience re-exports
pub use Database;
pub use ServerError;
pub use ;