lprs/src/traits.rs

7 lines
171 B
Rust
Raw Normal View History

2023-12-23 20:59:25 +01:00
use crate::{password::Passwords, PassrsResult};
/// Trait to run the command
pub trait RunCommand {
fn run(&self, password_manager: Passwords) -> PassrsResult<()>;
}