relay-knowledge 1.1.16

Graph-database-based knowledge graph project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Outermost process and runtime assembly facades.
//!
//! The bootstrap layer is the onion architecture boundary that owns process
//! concerns: argv/stdout/stderr handling, environment loading, runtime
//! configuration assembly, adapter construction, listener startup, worker
//! lifecycle, and graceful shutdown. During the first migration step these
//! facades delegate to the existing interface and application modules so the
//! observable CLI and service behavior remains unchanged while new process
//! entry points move to the outer layer.

pub mod cli;
mod service;

pub(crate) use service::runtime_configuration_from_process_environment;