Files
drawer/src/operation.rs
T

7 lines
157 B
Rust
Raw Normal View History

2026-05-14 19:30:28 -05:00
use crate::error::DrawerError;
pub trait Operation {
fn perform(&self) -> Result<(), DrawerError>;
fn validate(&self) -> Result<(), DrawerError>;
}