1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
//! Fortress CLI Library
//!
//! Command-line interface for Fortress secure database system.
//!
//! This library provides the main CLI functionality including:
//! - Data migration commands
//! - Key management operations
//! - Configuration management
//! - Cluster operations
//! - Health monitoring
// #![warn(missing_docs)] // Disabled to reduce warning count
/// CLI command handlers
///
/// This module contains all the command implementations for the Fortress CLI,
/// including data migration, key management, configuration, and cluster operations.
/// Configuration management
///
/// Handles loading, validation, and management of Fortress configuration files
/// with support for multiple environments and configuration formats.
/// Utility functions
///
/// Common utility functions used throughout the CLI including formatting,
/// validation, and helper functions for various operations.
/// Type definitions
///
/// Common types and enums used across the CLI including command types,
/// configuration structures, and shared data structures.
/// Configuration wizard
///
/// Interactive configuration setup with dialoguer for user-friendly configuration
/// Progress bars
///
/// Progress tracking for long-running operations with indicatif
/// Shell completions
///
/// Auto-completion support for various shells with clap_complete
/// Enhanced error handling
///
/// Structured error reporting with documentation integration and troubleshooting guides
/// Error documentation
///
/// Detailed error documentation and troubleshooting guides
/// GraphQL subscriptions
///
/// Real-time GraphQL subscriptions for data changes, security events, and metrics
/// Query optimization
///
/// GraphQL query optimization with caching, batching, and performance monitoring
/// API versioning
///
/// Backward-compatible API versioning system with migration support
/// Integration tests
///
/// Comprehensive integration tests for all CLI enhancements
// Re-export commonly used types
pub use ;
pub use ;
pub use FortressError;
pub use ;