An Express-inspired web framework for Rust

:star: help us by adding a star on GitHub Star to the project

use graphul::{Graphul, http::Methods};

#[tokio::main]
async fn main() {
    let mut app = Graphul::new();

    app.get("/", || async {
        "Hello, World 👋!"
    });

    app.run("127.0.0.1:8000").await;
}

https://github.com/graphul-rs/graphul

3 Likes

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.