bmo/lib.rs
1//! BMO — local-first SQLite-backed issue tracker.
2//!
3//! This crate is primarily used via the `bmo` CLI binary. The library surface
4//! exposes the database layer, domain models, error types, and the Axum-based
5//! web server for embedding or programmatic use.
6//!
7//! The `filter` module is internal to the binary and is not re-exported here.
8
9// Dead code is expected during incremental development; remove before 1.0
10#![allow(dead_code)]
11
12pub mod db;
13pub mod errors;
14pub mod model;
15pub mod web;