yooso/lib.rs
1//! Yōso is a backend platform inspired by ECS data design. The data is
2//! structured as flexible entities with reusable components rather than
3//! tabular or schematic presets.
4
5// Re-exports
6pub use rocket;
7pub use rocket::{Route, delete, get, head, options, patch, post, put, routes, trace};
8pub use yooso_api::Yooso;
9pub use yooso_core::{Component, Entity};
10pub use yooso_macro::launch;