2024-04-06 22:44:30 +08:00
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
2024-06-04 23:06:10 +08:00
|
|
|
mod arch;
|
|
|
|
|
mod gateway;
|
|
|
|
|
mod instance;
|
|
|
|
|
mod peer_center;
|
|
|
|
|
mod vpn_portal;
|
|
|
|
|
|
2024-04-06 22:44:30 +08:00
|
|
|
pub mod common;
|
2025-03-07 21:11:56 +08:00
|
|
|
pub mod connector;
|
2024-06-04 23:06:10 +08:00
|
|
|
pub mod launcher;
|
2025-06-11 23:17:09 +08:00
|
|
|
pub mod instance_manager;
|
2024-10-24 16:21:35 +08:00
|
|
|
pub mod peers;
|
2024-10-19 18:10:02 +08:00
|
|
|
pub mod proto;
|
2024-04-24 23:12:46 +08:00
|
|
|
pub mod tunnel;
|
2024-04-06 22:44:30 +08:00
|
|
|
pub mod utils;
|
2024-10-26 00:04:22 +08:00
|
|
|
pub mod web_client;
|
2024-09-11 09:13:00 +08:00
|
|
|
|
2024-10-24 16:21:35 +08:00
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests;
|
|
|
|
|
|
2024-09-18 22:25:47 +08:00
|
|
|
pub const VERSION: &str = common::constants::EASYTIER_VERSION;
|
2024-10-25 13:33:04 -04:00
|
|
|
rust_i18n::i18n!("locales", fallback = "en");
|