shuttle-rocket

Crates.ioshuttle-rocket
lib.rsshuttle-rocket
version0.46.0
sourcesrc
created_at2023-03-14 12:36:30.507895
updated_at2024-06-13 10:10:14.066633
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: 1307

cargo fmt