dead_man_switch/
lib.rs

1//! # Dead Man's Switch
2//!
3//! This is a simple implementation of a
4//! [Dead Man's Switch](https://en.wikipedia.org/wiki/Dead_man%27s_switch)
5//!
6//! Use at your own risk.
7//! Check the f*(as in friendly) code.
8
9pub mod config;
10pub mod email;
11pub mod timer;