1
2
3
4
5
6
7
8
//! A library used to collect common DDMW utility functions.

pub mod err;
pub use err::Error;

pub mod kvparam;

// vim: set ft=rust et sw=2 ts=2 sts=2 cinoptions=2 tw=79 :