Init
This commit is contained in:
commit
2ba4c3b1c2
10 changed files with 556 additions and 0 deletions
8
src/symbols/mod.rs
Normal file
8
src/symbols/mod.rs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
pub trait Symbol {
|
||||
type Error;
|
||||
fn target_reached(&self) -> Result<bool, Self::Error>;
|
||||
fn execute(&self) -> Result<(), Self::Error>;
|
||||
}
|
||||
|
||||
pub mod user;
|
||||
pub mod systemd;
|
||||
Loading…
Add table
Add a link
Reference in a new issue