Integra is a sleek, performant web framework for Rust, harnessing the power of the hyper
library.
hyper
, one of the Rust's fastest web libraries.To-do
Unique concept right now is working. Will be published soon.
rust
pub fn initialize_routes() {
ROUTER.get("/", Box::new(index));
ROUTER.get("/hello", Box::new(greet));
}
To-do