goodrouter 1.0.12

a bi directional trie router for all your routing needs
Documentation
1
2
3
4
5
6
7
8
use once_cell::sync::Lazy;
use regex::Regex;

pub mod template_pairs;
pub mod template_parts;

pub static TEMPLATE_PLACEHOLDER_REGEX: Lazy<Regex> =
    Lazy::new(|| Regex::new(r"\{(.*?)\}").unwrap());