Extract parser into its own submodule

This commit is contained in:
Joscha 2021-11-08 12:22:51 +00:00
parent dc24bbc883
commit d8ec2e6c3a
6 changed files with 43 additions and 56 deletions

5
src/parse.rs Normal file
View file

@ -0,0 +1,5 @@
mod commands;
mod parser;
pub use commands::parse as parse_commands;
pub use parser::{ParseError, ParseResult, Parser};