Skip to content

Commit

Permalink
refactor: update module imports and file paths for monset integration
Browse files Browse the repository at this point in the history
  • Loading branch information
Kremilly committed Jun 12, 2024
1 parent b0947ae commit 3f64870
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/cmd/monset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ use crate::{
ui::errors_alerts::ErrorsAlerts,

monset::{
runner_block::RunnerBlock,
downloads_block::DownloadsBlock,
blocks::runner_block::RunnerBlock,
blocks::downloads_block::DownloadsBlock,
},
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use crate::{
monset::{
macros::Macros,
vars::Vars,
readme_block::ReadMeBlock,
blocks::readme_block::ReadMeBlock,
},
};

Expand Down
3 changes: 3 additions & 0 deletions src/monset/blocks/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pub mod readme_block;
pub mod runner_block;
pub mod downloads_block;
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions src/monset/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pub mod macros;
pub mod vars;
pub mod readme_block;
pub mod runner_block;
pub mod downloads_block;
pub mod macros;

// Blocks
pub mod blocks;
2 changes: 1 addition & 1 deletion src/scimon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::error::Error;
use crate::{
args_cli::Flags,
cmd::monset::Monset,
monset::readme_block::ReadMeBlock,
monset::blocks::readme_block::ReadMeBlock,

ui::{
ui_base::UI,
Expand Down

0 comments on commit 3f64870

Please sign in to comment.