This commit is contained in:
Adrian Heine 2016-03-13 11:15:12 +01:00
commit 2ba4c3b1c2
10 changed files with 556 additions and 0 deletions

8
src/symbols/mod.rs Normal file
View 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;