megumax/toml/
consts.rs

1use std::path::PathBuf;
2
3pub fn current_dir() -> PathBuf {
4	PathBuf::from("src")
5}
6
7pub fn output_dir() -> PathBuf {
8	PathBuf::from("build")
9}