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