shuttle_runtime::ShuttleMetadata
use axum::{routing::get, Router}; use shuttle_runtime::DeploymentMetadata; #[shuttle_runtime::main] async fn axum( #[shuttle_runtime::Metadata] metadata: DeploymentMetadata, ) -> shuttle_axum::ShuttleAxum { let router = Router::new().route("/", get(format!("{:?}", metadata))); Ok(router.into()) }
DeploymentMetadata
DeploymentMetadata { env: Local, project_name: "metadata-axum-app", storage_path: ".shuttle-storage" }
Was this page helpful?