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.
25 lines
289 B
25 lines
289 B
4 years ago
|
//! 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(),
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|