HTTPQL
This is the Rust parser for the HTTPQL language.
use HTTPQL;
This is the Rust parser for the HTTPQL language.
use httpql::HTTPQL;
pub fn main() {
let query = HTTPQL::parse(r"req.ext.cont:"HELLO"").unwrap();
println("Query is {}", query);
}