manta-shared 2.0.0-beta.17

Shared types and pure helpers used by both manta-cli and manta-server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Behavioural helpers. Bi-binary by use: `config`, `error`.
//! CLI-only by use: `app_context`, `log_ops`, `sat_file`.
//! Server-only by use: `audit`, `kafka`, `jwt_ops`. The single-binary
//! entries live here pending a per-binary split.

/// Date-time format string used for displaying timestamps
/// throughout the application (e.g. "04/03/2026 14:30:00").
pub const DATETIME_FORMAT: &str = "%d/%m/%Y %H:%M:%S";

pub mod app_context;
pub mod audit;
pub mod config;
pub mod error;
pub mod jwt_ops;
pub mod kafka;
pub mod log_ops;
pub mod sat_file;