refactor: moved docker out of controller module

This commit is contained in:
hdbg
2025-12-04 18:40:27 +01:00
parent ba079d24b5
commit d39f67f3fe
7 changed files with 419 additions and 428 deletions

View File

@@ -2,6 +2,11 @@ mod cli;
mod config;
mod state;
mod consts {
pub const USERNAME: &str = "postgres";
pub const DATABASE: &str = "postgres";
}
mod controller;
use clap::Parser;
@@ -31,7 +36,7 @@ async fn main() -> Result<()> {
}
fn init_tracing(verbose: bool) {
use tracing_subscriber::{fmt, prelude::*};
tracing_subscriber::fmt::init();
}