1//! WQL — Web Query Language for the compiled web. 2//! 3//! A SQL-like language for querying compiled schemas across domains, 4//! with temporal functions for history, trends, and predictions. 5 6pub mod executor; 7pub mod parser; 8pub mod planner;