Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 851 Bytes

README.md

File metadata and controls

33 lines (27 loc) · 851 Bytes

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!"
}