about summary refs log tree commit diff
path: root/src/settings.rs
blob: 06abc187fa50e7c0be41b07b22f3d6d0189867f0 (plain)
1
2
3
4
5
6
7
use camino::Utf8PathBuf;

#[derive(Clone, Debug)]
pub struct Settings {
	pub template_dir: Utf8PathBuf,
	pub hostname: String,
}