edge_schema/
lib.rs

1// Allowed because it makes code more readable.
2
3#![allow(
4    clippy::bool_comparison,
5    clippy::match_like_matches_macro,
6    clippy::manual_range_contains
7)]
8
9mod app_id;
10mod network_id;
11
12pub mod instance;
13pub mod pretty_duration;
14pub mod schema;
15
16pub use self::{
17    app_id::AppId,
18    network_id::{NetworkId, NetworkIdEncodingMethod},
19};
20
21pub static WELL_KNOWN_VPN: &str = "/.well-known/edge-vpn";