Skip to content

Commit

Permalink
refactor: rename same mod name to differnet one
Browse files Browse the repository at this point in the history
  • Loading branch information
greenhat616 committed Jan 21, 2024
1 parent 2052acf commit 0007bd0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions backend/tauri/src/config/mod.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
mod clash;
mod config;
mod core;
mod draft;
mod prfitem;
mod profiles;
mod runtime;
mod verge;

pub use self::{clash::*, config::*, draft::*, prfitem::*, profiles::*, runtime::*, verge::*};
pub use self::{clash::*, core::*, draft::*, prfitem::*, profiles::*, runtime::*, verge::*};
File renamed without changes.
4 changes: 2 additions & 2 deletions backend/tauri/src/core/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pub mod clash_api;
mod core;
mod clash_core;
pub mod handle;
pub mod hotkey;
pub mod logger;
Expand All @@ -11,4 +11,4 @@ pub mod tray;
pub mod updater;
pub mod win_service;
pub mod win_uwp;
pub use self::core::*;
pub use self::clash_core::*;

0 comments on commit 0007bd0

Please sign in to comment.