use Lazy;
use Regex;
/// Developer-maintained list of URL path patterns that require User-Agent filtering.
///
/// Only requests matching these patterns will be checked against UA allow/deny rules.
/// All other paths (web UI, API, static assets, etc.) pass through without UA filtering.
///
/// ## How to add a new filtered path
///
/// 1. Add a new pattern string to the `UA_FILTERED_PATTERNS` array below.
/// 2. The pattern is a regex matched against the request URL path (without query params).
/// 3. Typically these are video stream paths that should only be accessed by known players.
const UA_FILTERED_PATTERNS: & = &;
pub static COMPILED_UA_FILTERS: = new;