feat: add memory worker runtime crate

This commit is contained in:
2026-06-26 01:31:09 +09:00
parent f8d3b1cca9
commit 9b2cae32ea
12 changed files with 1325 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
//! Embedded Runtime domain API for Worker management.
//!
//! `worker-runtime` intentionally stays independent from HTTP/WebSocket servers,
//! filesystem persistence, provider execution, and the existing Worker host. It
//! defines the in-process Runtime authority surface that higher layers can later
//! adapt into registries or web APIs.
pub mod catalog;
pub mod diagnostics;
pub mod error;
pub mod identity;
pub mod interaction;
pub mod management;
pub mod observation;
mod runtime;
pub use runtime::Runtime;