Skip to content

Commit 73b7ae1

Browse files
committed
cleanup imports
1 parent 4a8c240 commit 73b7ae1

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

public/index.js

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
import {
2-
query_le,
3-
query_le_js,
4-
re_init_le_swipl,
5-
query_le_wasm,
6-
query_le_wasm_js,
7-
render_le_resp_with_guifier,
8-
clj_to_js,
9-
js_to_clj
10-
} from "./js/main.js";
2+
query_le_js,
3+
re_init_le_swipl,
4+
query_le_wasm_js,
5+
render_le_resp_with_guifier
6+
} from "./js/main.js";
117

128
const program = await fetch("program.le").then(x => x.text());
139
const data = await fetch("data.json").then(x => x.json());
@@ -21,7 +17,7 @@ const resp = await query_le_js(server_url, program, data, query);
2117

2218
// Query alternative wasm backend.
2319
// await re_init_le_swipl("le.qlf");
24-
// const resp = await query_le_wasm(program, data, query);
20+
// const resp = await query_le_wasm_js(program, data, query);
2521

2622
console.log("LE explanation tree: ", resp);
2723

0 commit comments

Comments
 (0)