pub trait Callable: Send + Sync { fn call(&self, params: Vec<Primitive>) -> Vec<Primitive>; }
A function which can be called from the front-end (remotely)
Invoke the function