You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
videl/src/config.rs

25 lines
289 B

//! Videl configuration
use std::{
path::{
PathBuf,
},
};
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct Config
{
pub base_dir: PathBuf,
}
impl Default for Config
{
#[inline]
fn default() -> Self
{
Self {
base_dir: PathBuf::default(),
}
}
}