triage-core 0.1.1

Shared session trait and types for Triage, the attention-routing terminal supervisor.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod config;
pub mod logging;
pub mod session;

#[allow(
    unsafe_code,
    clippy::all,
    unused_imports,
    dead_code,
    mismatched_lifetime_syntaxes,
    unsafe_op_in_unsafe_fn
)]
pub mod generated {
    include!(concat!(env!("OUT_DIR"), "/triage_generated.rs"));
}

pub mod flatbuffers_proto;