Skip to main content

euv_cli/server/
const.rs

1/// The error message returned when the server is not yet ready.
2pub const ERROR_SERVER_NOT_READY: &str = "server not ready";
3
4/// The HTTP scheme prefix.
5pub const HTTP_SCHEME: &str = "http";
6
7/// The Windows UNC path prefix.
8pub const WINDOWS_UNC_PREFIX: &str = r"\\?\";