mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-06 03:43:44 +08:00
Split the monolithic feat.rs file into specialized modules: - backup.rs: WebDAV backup and restore functions - clash.rs: Core management and testing functions - config.rs: Configuration handling - profile.rs: Profile management - proxy.rs: Proxy and TUN mode controls - window.rs: Dashboard window management This improves code organization, readability, and maintainability by grouping related functionality into logical modules.
15 lines
225 B
Rust
15 lines
225 B
Rust
mod backup;
|
|
mod clash;
|
|
mod config;
|
|
mod profile;
|
|
mod proxy;
|
|
mod window;
|
|
|
|
// Re-export all functions from modules
|
|
pub use backup::*;
|
|
pub use clash::*;
|
|
pub use config::*;
|
|
pub use profile::*;
|
|
pub use proxy::*;
|
|
pub use window::*;
|