rnetmon/src/monitor.rs

7 lines
93 B
Rust
Raw Normal View History

2019-01-30 15:26:05 +00:00
use crate::message::Message;
pub trait Monitor {
fn new() -> Self;
fn run(&self);
}