pub trait KeyupUseCase: Send + Sync {
// Required method
fn execute(&self, input: KeyupInput) -> Result<KeyupOutput, SessionError>;
}pub trait KeyupUseCase: Send + Sync {
// Required method
fn execute(&self, input: KeyupInput) -> Result<KeyupOutput, SessionError>;
}