Add the folder structure for the toml config.

This commit is contained in:
Tom Alexander
2023-10-18 19:59:45 -04:00
parent 8b5930f277
commit 63b0619094
3 changed files with 7 additions and 0 deletions

4
src/config/definition.rs Normal file
View File

@@ -0,0 +1,4 @@
/// This is the struct for the writer.toml config file that ends up in each site's root directory.
pub(crate) struct Config {
foo: String,
}

2
src/config/mod.rs Normal file
View File

@@ -0,0 +1,2 @@
mod definition;
pub(crate) use definition::Config;