//! Data structures and utilities for parsing [SGF FF\[4\] files](https://www.red-bean.com/sgf/).
//!
//! For reading SGFs your starting point will be the [parse](fn.parse.html) function which will
//! return a `Vector` of `SgfNode` structs.
//!
//! For writing SGFs you'll want to build a collection of `SgfNode` structs, and then use
//! [serialize](fn.serialize.html). See `SgfNodeBuilder` and `SgfNode::to_builder`.
pub use SgfParseError;
pub use parse;
pub use ;
pub use serialize;
pub use ;