sgf/
lib.rs

1// Copyright 2016 ICHIKAWA, Yuji
2// License: MIT
3
4//! SGF(Smart Game Format) parser
5
6extern crate regex;
7
8pub mod sgf_node;
9mod parser;
10
11pub use sgf_node::*;