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
//! Common imports for ordinary Vyuh application code.
//!
//! The prelude contains symbols most handlers and examples need directly.
//! Registration APIs stay under the `bundles::` namespace:
//!
//! ```rust
//! use vyuh::prelude::*;
//!
//! #[bundles::route(path = "/health")]
//! async fn health() -> Json<&'static str> {
//! Json("ok")
//! }
//! ```
// ── Core framework types ────────────────────────────────────────────────────
pub use crate::;
pub use JsonSchema;
pub use ;
// ── Registration namespace ──────────────────────────────────────────────────
pub use cratebundles;
// ── Routes ──────────────────────────────────────────────────────────────────
pub use crate;
// ── Tasks ───────────────────────────────────────────────────────────────────
pub use crate;
// ── Services ─────────────────────────────────────────────────────────────────
pub use crateServiceRef;
// ── Channels ─────────────────────────────────────────────────────────────────
pub use crate;