manta_shared/common/mod.rs
1//! Helpers shared by both binaries (manta-cli today; manta-server soon).
2
3/// Date-time format string used for displaying timestamps
4/// throughout the application (e.g. "04/03/2026 14:30:00").
5pub const DATETIME_FORMAT: &str = "%d/%m/%Y %H:%M:%S";
6
7pub mod app_context;
8pub mod audit;
9pub mod check_network_connectivity;
10pub mod config;
11pub mod error;
12pub mod jwt_ops;
13pub mod kafka;
14pub mod log_ops;