1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Allowed because it makes code more readable.

#![allow(
    clippy::bool_comparison,
    clippy::match_like_matches_macro,
    clippy::manual_range_contains
)]

mod app_id;
pub mod instance;
mod network_id;
pub mod schema;

pub use app_id::*;
pub use network_id::*;

pub static WELL_KNOWN_VPN: &str = "/.well-known/edge-vpn";