aboutsummaryrefslogtreecommitdiff
path: root/lockchain-files/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lockchain-files/src/config.rs')
-rw-r--r--lockchain-files/src/config.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/lockchain-files/src/config.rs b/lockchain-files/src/config.rs
index ffec582..c862b31 100644
--- a/lockchain-files/src/config.rs
+++ b/lockchain-files/src/config.rs
@@ -11,6 +11,8 @@ use semver::Version;
use toml;
use utils::FileToString;
+use lcc::Generator;
+
/// A set of errors around `lockchain-files` configs
#[derive(Debug)]
pub enum ConfigError {
@@ -46,7 +48,7 @@ pub struct VaultConfig {
}
impl VaultConfig {
- pub fn new() -> Self {
+ pub fn new(_: &Generator) -> Self {
Self {
version: "0.1".into(),
created_at: SystemTime::now(),