use catalyzer::*; #[main] fn main() { App![index] .bind("0.0.0.0:3000")? .launch() } #[get("/")] fn index() { "Hello, World!" }