Add calling of supervisor over mycelium

Signed-off-by: Lee Smet <lee.smet@hotmail.com>
This commit is contained in:
Lee Smet
2025-08-28 13:50:59 +02:00
parent cf06c7fa36
commit 4b597cc445
8 changed files with 331 additions and 12 deletions

View File

@@ -144,6 +144,8 @@ pub struct RunnerCreate {
pub pubkey: String,
pub address: IpAddr,
pub topic: String,
/// The script type this runner executes (used for routing)
pub script_type: ScriptType,
pub local: bool,
}
impl RunnerCreate {
@@ -155,6 +157,7 @@ impl RunnerCreate {
pubkey,
address,
topic,
script_type,
local,
} = self;
@@ -163,6 +166,7 @@ impl RunnerCreate {
pubkey,
address,
topic,
script_type,
local,
created_at: ts,
updated_at: ts,