catalyzer

Crates.iocatalyzer
lib.rscatalyzer
version0.1.3
sourcesrc
created_at2024-04-04 20:35:53.097579
updated_at2024-04-05 13:44:24.958318
descriptionHTTP server framework
homepagehttps://matveit.dev/projects/catalyzer
repositoryhttps://github.com/AtomicGamer9523/Catalyzer
max_upload_size
id1196714
size32,258
Матвей Т (AtomicGamer9523)

documentation

README

catalyzer-logo

Catalyzer

Catalyzer is a web framework for Rust, made to be simple and easy to use.

Example

use catalyzer::*;

#[main]
fn main() {
    App![index]
        .bind("0.0.0.0:3000")?
        .launch()
}

#[get("/")]
fn index() {
    "Hello, World!"
}
Commit count: 17

cargo fmt