Skip to main content

argumentation/parsers/
mod.rs

1//! Parsers for standard argumentation-framework file formats.
2
3pub mod apx;
4pub mod tgf;
5
6pub use apx::parse_apx;
7pub use tgf::parse_tgf;