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