pub trait Action: Send + Sync {
// Required method
fn normalize(&self, step: UserActionStep) -> Result<ActionSteps>;
}
pub trait Action: Send + Sync {
// Required method
fn normalize(&self, step: UserActionStep) -> Result<ActionSteps>;
}