1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
pub const OP_PERFORM_LIVE_UPDATE: &str = "PerformLiveUpdate";
pub const OP_BIND_ACTOR: &str = "BindActor";
pub const OP_REMOVE_ACTOR: &str = "RemoveActor";
pub const OP_HEALTH_REQUEST: &str = "HealthRequest";
pub const SYSTEM_ACTOR: &str = "system";
pub const CONFIG_WASMCLOUD_CLAIMS_ISSUER: &str = "__wasmcloud_issuer";
pub const CONFIG_WASMCLOUD_CLAIMS_CAPABILITIES: &str = "__wasmcloud_capabilities";
pub const CONFIG_WASMCLOUD_CLAIMS_NAME: &str = "__wasmcloud_name";
pub const CONFIG_WASMCLOUD_CLAIMS_EXPIRES: &str = "__wasmcloud_expires";
pub const CONFIG_WASMCLOUD_CLAIMS_TAGS: &str = "__wasmcloud_tags";