sov-kernel-monster / desktop /src /seb_launcher.rs
SNAPKITTYWEST's picture
chore: push full sov-kernel-monster content from local build
9425aed verified
Raw
History Blame Contribute Delete
305 Bytes
//! SEB (Sovereign Event Bus) Erlang/OTP node launcher
pub fn spawn_seb_node() -> bool {
let result = std::process::Command::new("erl")
.arg("-noshell")
.arg("-eval")
.arg("seb_supervisor:boot(), timer:sleep(infinity).")
.spawn();
result.is_ok()
}