Add tool (WIP)

This commit is contained in:
Jeremy Soller
2020-02-20 14:20:16 -07:00
parent b0cd6f50e4
commit 08490002b9
10 changed files with 379 additions and 0 deletions

4
tool/src/timeout.rs Normal file
View File

@ -0,0 +1,4 @@
pub trait Timeout {
fn reset(&mut self);
fn running(&self) -> bool;
}