Skip to content

Commit

Permalink
refactor: rename path from 'monset' to 'syntax'
Browse files Browse the repository at this point in the history
  • Loading branch information
Kremilly committed Jul 23, 2024
1 parent cd1d707 commit e56fa38
Show file tree
Hide file tree
Showing 13 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/cmd/monset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use crate::{
utils::validation::Validate,
ui::errors_alerts::ErrorsAlerts,

monset::blocks::{
syntax::blocks::{
runner_block::RunnerBlock,
downloads_block::DownloadsBlock,
},
Expand Down
4 changes: 2 additions & 2 deletions src/cmd/tasks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ use sha2::{

use crate::{
args_cli::Flags,
monset::vars::Vars,
monset::macros::Macros,
syntax::vars::Vars,
syntax::macros::Macros,

ui::{
ui_base::UI,
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mod regexp;
mod consts;
mod addons;
mod system;
mod monset;
mod syntax;
mod scimon;
mod configs;
mod args_cli;
Expand Down
2 changes: 1 addition & 1 deletion src/render/render_inject.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::error::Error;

use crate::{
monset::vars::Vars,
syntax::vars::Vars,

utils::{
str::StrUtils,
Expand Down
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::blocks::readme_block::ReadMeBlock,
syntax::blocks::readme_block::ReadMeBlock,

ui::{
ui_base::UI,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use crate::{
macros_alerts::MacrosAlerts,
},

monset::{
syntax::{
vars::Vars,
macros::Macros,
blocks::readme_block::ReadMeBlock,
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use std::{

use crate::{
args_cli::Flags,
monset::vars::Vars,
syntax::vars::Vars,
render::render::Render,
system::markdown::Markdown,
ui::macros_alerts::MacrosAlerts,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/system/reporting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::error::Error;

use crate::{
utils::remote::Remote,
monset::macros::Macros,
syntax::macros::Macros,
regexp::regex_core::CoreRegExp,
ui::errors_alerts::ErrorsAlerts,
};
Expand Down

0 comments on commit e56fa38

Please sign in to comment.