edge-schema 0.1.0

Shared schema types for Wasmer Edge.
Documentation
// Allowed because it makes code more readable.

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

mod app_id;
mod network_id;

pub mod instance;
pub mod pretty_duration;
pub mod schema;

pub use self::{
    app_id::AppId,
    network_id::{NetworkId, NetworkIdEncodingMethod},
};

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