1
2
3
4
5
6
7
8
9
extern crate encoding;
extern crate regex;
extern crate dimensioned as dim;

pub mod ea1;
pub mod data;

pub enum Error {}
type Result<T> = std::result::Result<T, Error>;