mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 15:53:45 +08:00
22 lines
456 B
Rust
22 lines
456 B
Rust
mod clash;
|
|
#[allow(clippy::module_inception)]
|
|
mod config;
|
|
mod draft;
|
|
mod prfitem;
|
|
mod profiles;
|
|
mod runtime;
|
|
mod verge;
|
|
|
|
pub use self::clash::*;
|
|
pub use self::config::*;
|
|
pub use self::draft::*;
|
|
pub use self::prfitem::*;
|
|
pub use self::profiles::*;
|
|
pub use self::runtime::*;
|
|
pub use self::verge::*;
|
|
|
|
pub const DEFAULT_PAC: &str = r#"function FindProxyForURL(url, host) {
|
|
return "PROXY 127.0.0.1:%mixed-port%; SOCKS5 127.0.0.1:%mixed-port%; DIRECT;";
|
|
}
|
|
"#;
|