mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 08:53:29 +01:00
004d7b5ff0
* query command with json, web, xml * query xml now working * clippy * comment out web tests * Initial work on query web For now we can query everything except tables * Support for querying tables Now we can query multiple tables just like before, now the only thing missing is the test coverage * finish off * comment out web test Co-authored-by: Luccas Mateus de Medeiros Gomes <luccasmmg@gmail.com>
13 lines
256 B
Rust
13 lines
256 B
Rust
mod nu;
|
|
mod query;
|
|
mod query_json;
|
|
mod query_web;
|
|
mod query_xml;
|
|
mod web_tables;
|
|
|
|
pub use query::Query;
|
|
pub use query_json::execute_json_query;
|
|
pub use query_web::parse_selector_params;
|
|
pub use query_xml::execute_xpath_query;
|
|
pub use web_tables::WebTable;
|