summaryrefslogtreecommitdiff
path: root/src/cmd/show_config.rs
blob: 8acd1c85e85be96eaddcafa3fb421a1706c9ccc9 (plain)
1
2
3
4
5
6
7
use crate::client::ClientConfig;
use crate::error::ObnamError;

pub fn show_config(config: &ClientConfig) -> Result<(), ObnamError> {
    println!("{}", serde_json::to_string_pretty(&config.config())?);
    Ok(())
}