feat: add worker runtime fs store

This commit is contained in:
2026-06-26 04:40:58 +09:00
parent 40d4138068
commit 4071343996
8 changed files with 1240 additions and 12 deletions
+3 -1
View File
@@ -1,11 +1,13 @@
use crate::identity::RuntimeId;
use serde::{Deserialize, Serialize};
/// Runtime backend kind. v0 intentionally ships only an embedded memory backend.
/// Runtime backend kind.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum RuntimeBackendKind {
Memory,
#[cfg(feature = "fs-store")]
FsStore,
}
/// Runtime lifecycle state.