manta_shared/common/mod.rs
1//! Behavioural helpers used by both binaries: config loader, error
2//! type, log-init helper. `log_ops` is bi-binary; both `manta-cli` and
3//! `manta-server` `configure(...)` the tracing subscriber on startup.
4
5/// Date-time format string used for displaying timestamps
6/// throughout the application (e.g. "04/03/2026 14:30:00").
7pub const DATETIME_FORMAT: &str = "%d/%m/%Y %H:%M:%S";
8
9pub mod config;
10pub mod error;
11pub mod log_ops;