blob: 78795a3f331ab5d4ffc3e205e653c423c524392e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
use serde::Deserialize;
#[derive(Deserialize)]
pub struct Config {
pub apikey: String,
pub server: String,
}
impl Config {
pub fn load() -> Result<Config, config::ConfigError> {
let builder = config::Config::builder()
.add_source(config::File::with_name("~/.config/webol-cli.toml"))
.add_source(config::File::with_name("webol-cli.toml"))
.add_source(config::Environment::with_prefix("WEBOL_CLI_").separator("_"))
.build()?;
builder.try_deserialize()
}
}
|