Crates.io | catalyzer |
lib.rs | catalyzer |
version | 0.1.3 |
source | src |
created_at | 2024-04-04 20:35:53.097579 |
updated_at | 2024-04-05 13:44:24.958318 |
description | HTTP server framework |
homepage | https://matveit.dev/projects/catalyzer |
repository | https://github.com/AtomicGamer9523/Catalyzer |
max_upload_size | |
id | 1196714 |
size | 32,258 |
Catalyzer is a web framework for Rust, made to be simple and easy to use.
use catalyzer::*;
#[main]
fn main() {
App![index]
.bind("0.0.0.0:3000")?
.launch()
}
#[get("/")]
fn index() {
"Hello, World!"
}