triaged 0.1.1

Long-running daemon that owns Triage terminal session state.
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(unix, allow(unsafe_code))]

pub mod handover;
pub mod http;
#[cfg(unix)]
pub mod ipc;
pub mod session;
pub mod ws;

#[cfg(all(unix, test))]
mod handover_tests;
#[cfg(test)]
mod http_tests;