Function run

Source
pub fn run(event_sender: Option<Sender<ServerEvent>>) -> Result<()>
Examples found in repository?
examples/server.rs (line 6)
5fn main() {
6    thread::spawn(|| server::run(None));
7    thread::sleep(Duration::from_secs(600));
8}