Writing the writer.toml to a folder when running init.

This commit is contained in:
Tom Alexander
2023-10-18 20:21:28 -04:00
parent 5f82d7a469
commit 933387eb6f
4 changed files with 37 additions and 1 deletions

View File

@@ -6,3 +6,8 @@ use serde::Serialize;
pub(crate) struct Config {
foo: String,
}
impl Default for Config {
fn default() -> Self {
Config { foo: "".to_owned() }
}
}