1
2
3
4
5
6
7
use std::io;

#[derive(Debug)]
pub enum Error {
    IoError(io::Error),
    InvalidPackageFormat,
}