shuttle-rocket

Crates.ioshuttle-rocket
lib.rsshuttle-rocket
version0.48.0
sourcesrc
created_at2023-03-14 12:36:30.507895
updated_at2024-10-01 14:36:43.106474
descriptionService implementation to run a rocket webserver on shuttle
homepage
repositoryhttps://github.com/shuttle-hq/shuttle
max_upload_size
id809822
size3,234
(jonaro00)

documentation

README

Shuttle service integration for the Rocket web framework

Example

use rocket::{get, routes};

#[get("/")]
fn index() -> &'static str {
    "Hello, world!"
}

#[shuttle_runtime::main]
async fn rocket() -> shuttle_rocket::ShuttleRocket {
    let rocket = rocket::build().mount("/", routes![index]);

    Ok(rocket.into())
}
Commit count: 1381

cargo fmt