auth0_client 0.2.2

An unofficial Auth0 API client for Rust
Documentation
1
2
3
4
5
6
7
use lazy_static::lazy_static;
use regex::Regex;

lazy_static! {
    /// Regex to remove duplicate slashes from URLs
    pub static ref URL_REGEX: Regex = Regex::new(r"([^:]/)/+").expect("URL Regex error");
}