Skip to content

Commit

Permalink
run parser
Browse files Browse the repository at this point in the history
  • Loading branch information
adamtrilling committed Jan 14, 2022
1 parent 0ffe8c3 commit 2745169
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rust/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
use serde_json::Value;

pub mod parse;

pub fn query_value(
_query_str: String,
query_str: String,
_data: serde_json::Value,
) -> Result<serde_json::Value, &'static str> {
let ast = parse::expr(&query_str);
dbg!(ast);
Err("unimplemented")
}

Expand Down

0 comments on commit 2745169

Please sign in to comment.