tav 1.1.0

Terminal anti-virus
Documentation
// use anyhow::anyhow;
// use anyhow::Result as AnyResult;
use std::collections::HashMap;

use serde_derive::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize)]
pub struct Definitions {
    pub providers: HashMap<String, String>,
}

pub struct CmdExit {
    pub code: exitcode::ExitCode,
    pub message: Option<String>,
}

#[cfg(test)]
mod tests {
    // use super::*;

    #[test]
    fn test_foo() {
        assert_ne!(4, 5);
    }
}