Add the folder structure for the toml config.
This commit is contained in:
4
src/config/definition.rs
Normal file
4
src/config/definition.rs
Normal 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
2
src/config/mod.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
mod definition;
|
||||
pub(crate) use definition::Config;
|
||||
Reference in New Issue
Block a user