Fix imports for wasm.

This commit is contained in:
Tom Alexander
2023-12-27 08:49:34 -05:00
parent c717541099
commit 55ad136283
4 changed files with 7 additions and 8 deletions

View File

@@ -1,9 +1,6 @@
use wasm::wasm_parse_org;
use organic::wasm::wasm_parse_org;
use wasm_bindgen::prelude::wasm_bindgen;
mod error;
mod wasm;
#[wasm_bindgen]
pub fn parse_org(org_contents: &str) -> wasm_bindgen::JsValue {
let rust_parsed = wasm_parse_org(org_contents);