mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 21:47:02 +00:00
5 lines
140 B
Rust
5 lines
140 B
Rust
use once_cell::sync::Lazy;
|
|
use regex::Regex;
|
|
|
|
pub static RE_USERNAME: Lazy<Regex> = Lazy::new(|| Regex::new(r"^[a-zA-Z0-9_.]+$").unwrap());
|