1//! Type library for interacting with DDMW; in particular for conversion 2//! between strings and types. 3 4pub mod err; 5pub mod node; 6 7pub use err::Error; 8 9// vim: set ft=rust et sw=2 ts=2 sts=2 cinoptions=2 tw=79 :