use std::path::PathBuf;
use crate::prelude::*;
#[derive(Debug, Serialize, Deserialize)]
pub struct Output {
pub name: String,
pub directory: PathBuf
}
impl Output {
pub fn new(name: impl Into<String>, directory: impl Into<PathBuf>) -> Self {
let name = name.into();
let directory = directory.into();
Output { name, directory }
}
}