shuttle-tide 0.26.0

Service implementation to run a tide webserver on shuttle
Documentation

Shuttle service integration for the Tide web framework.

Example

#[shuttle_runtime::main]
async fn tide() -> shuttle_tide::ShuttleTide<()> {
let mut app = tide::new();
app.with(tide::log::LogMiddleware::new());

app.at("/hello").get(|_| async { Ok("Hello, world!") });

Ok(app.into())
}