refactor: splitted controller and reconciler

This commit is contained in:
hdbg
2025-12-04 22:37:25 +01:00
parent bc37b58d80
commit c45e9305e5
10 changed files with 381 additions and 286 deletions

View File

@@ -21,12 +21,10 @@ pub struct Cli {
#[derive(Clone, clap::ValueEnum)]
pub enum ConnectionFormat {
/// Human-readable text format
Text,
/// JSON format
Json,
/// Environment variable format
Env,
/// DSN Url
DSN,
// Human readable format
Human,
}
#[derive(Subcommand)]