Skip to main content

bones_triage/
lib.rs

1#![forbid(unsafe_code)]
2//! bones-triage library.
3//!
4//! # Conventions
5//!
6//! - **Errors**: Use `anyhow::Result` for return types.
7//! - **Logging**: Use `tracing` macros (`info!`, `warn!`, `error!`, `debug!`, `trace!`).
8
9pub mod feedback;
10pub mod graph;
11pub mod metrics;
12pub mod schedule;
13pub mod score;
14pub mod topology;
15
16use tracing::{info, instrument};
17
18#[instrument]
19pub fn init() {
20    info!("bones-triage initialized");
21}
22
23#[cfg(test)]
24mod tests {
25    #[test]
26    fn it_works() {
27        assert!(true);
28    }
29}