rnetmon/src/monitor.rs

7 lines
93 B
Rust

use crate::message::Message;
pub trait Monitor {
fn new() -> Self;
fn run(&self);
}