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