1
2
3
4
5
6
7
8
9
//! All traits related to parsing and writing of a network
//!
//! They are useful to create new parsers and writer which should be compatible with this framework

pub use export::Export;
pub use parse::Parse;

mod export;
mod parse;