4 lines
167 B
Rust
4 lines
167 B
Rust
// this regex is used to validate that domains are in the correct format
|
|
// e.g. blue.dyn.peachcloud.org
|
|
pub const DOMAIN_REGEX: &str = r"^.*\.dyn\.peachcloud\.org$";
|