| Crates.io | armature-azure-functions |
| lib.rs | armature-azure-functions |
| version | 0.1.2 |
| created_at | 2025-12-26 20:42:55.832859+00 |
| updated_at | 2025-12-30 22:17:39.599487+00 |
| description | Azure Functions runtime adapter for Armature applications |
| homepage | https://pegasusheavy.github.io/armature |
| repository | https://github.com/pegasusheavy/armature |
| max_upload_size | |
| id | 2006225 |
| size | 97,285 |
Azure Functions runtime adapter for the Armature framework.
[dependencies]
armature-azure-functions = "0.1"
use armature_azure_functions::AzureFunctionsRuntime;
use armature_core::Application;
#[tokio::main]
async fn main() {
let app = Application::new()
.get("/api/hello", |_| async {
Ok(HttpResponse::ok().with_text("Hello from Azure!"))
});
AzureFunctionsRuntime::new(app).run().await;
}
MIT OR Apache-2.0