Skip to content
This repository was archived by the owner on Jul 23, 2025. It is now read-only.

AtomicGamer9523/Catalyzer

Repository files navigation

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

Releases

No releases published

Packages

No packages published

Languages