Skip to main content

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 app;
10pub mod config;
11pub mod email;
12pub mod error;
13pub mod timer;