diff options
author | Valentin Popov <info@valentineus.link> | 2019-01-26 18:38:36 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2019-01-26 18:38:36 +0300 |
commit | bc7ca7dcc1f8c49b9b4da68137bd39e8f6de2325 (patch) | |
tree | 3a205329a78aad95d9cf0857bbbd0cdb68c16f07 | |
parent | ecbb303ce0d670a9b44110f070aca3746003ffd9 (diff) | |
download | bbb2json-bc7ca7dcc1f8c49b9b4da68137bd39e8f6de2325.tar.xz bbb2json-bc7ca7dcc1f8c49b9b4da68137bd39e8f6de2325.zip |
Sat, 26 Jan 2019 19:38:36 +0400
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index af08eae..bc32bd9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -6,6 +6,6 @@ use parser::*; fn main() { let file: File = File::open("events.xml").unwrap(); - let data: ParserResult = qwerty(BufReader::new(file)); + let data: ParserResult = parse(BufReader::new(file)); dbg!(data.meeting_name); } |