A tool to compile SQL to Elasticsearch queries
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.rs 172B

1234567
  1. use kappe;
  2. fn main() {
  3. let source: Vec<String> = std::env::args().skip(1).collect();
  4. let source = source.join(" ");
  5. println!("{}", kappe::compile(&source));
  6. }