frames_core/
lib.rs

1#[macro_use]
2extern crate lazy_static;
3extern crate regex;
4
5use regex::Regex;
6
7lazy_static! {
8    static ref URL_REGEX: Regex =
9        Regex::new(r"^https?://(?:www\.)?[\w.-]+\.[a-zA-Z]{2,}(?:[/\?#][^\s]*)?$").unwrap();
10}
11
12pub mod provider;
13pub mod types;
14pub mod validators;