radicle: Fix `config.json` issue

This allows the config to load without a `cli` key.
This commit is contained in:
cloudhead 2023-11-23 13:50:57 +01:00
parent 7d67dd6cb6
commit 2917198d1c
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

View File

@ -117,6 +117,7 @@ pub struct Config {
/// Node configuration.
pub node: node::Config,
/// CLI configuration.
#[serde(default)]
pub cli: cli::Config,
}