Skip to content

Commit

Permalink
Downgrade module to file with more correct name
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenlj committed Sep 29, 2023
1 parent 8fe456b commit ef99ccc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use tracing::info;

use settings::AppConfig;

mod aiven_types;
mod aiven_object;
mod logging;
mod mutators;
mod settings;
Expand Down
2 changes: 1 addition & 1 deletion src/mutators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use json_patch::PatchOperation;
use serde_json::{json, Value};
use tracing::{debug, info, instrument};

use crate::aiven_types::AivenObject;
use crate::aiven_object::AivenObject;
use crate::settings::AppConfig;

#[instrument(skip_all)]
Expand Down
2 changes: 1 addition & 1 deletion src/web.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use kube::core::DynamicObject;
use kube::ResourceExt;
use tracing::{debug, error, info, info_span, instrument, warn};

use crate::aiven_types::AivenObject;
use crate::aiven_object::AivenObject;
use crate::mutators;
use crate::settings::AppConfig;

Expand Down

0 comments on commit ef99ccc

Please sign in to comment.