trello-to-deck/src/config.rs

20 lines
555 B
Rust
Raw Normal View History

2024-11-29 19:19:36 +00:00
//
use color_eyre::Result;
use crate::{f, nextcloud::NextcloudConfig, s, trello::TrelloConfig, Ctx, NAME};
2024-11-29 19:19:36 +00:00
#[derive(
Clone, Debug, derive_more::From, PartialEq, Eq, derive_more::AsRef, serde::Deserialize,
2024-11-29 19:19:36 +00:00
)]
pub(crate) struct AppConfig {
pub(crate) trello: TrelloConfig,
pub(crate) nextcloud: NextcloudConfig,
}
2024-11-29 19:19:36 +00:00
impl AppConfig {
pub(crate) fn load(ctx: &Ctx) -> Result<Self> {
2024-11-29 19:19:36 +00:00
let file = ctx.fs.base().join(f!("{NAME}.toml"));
let str = ctx.fs.file(&file).reader()?;
Ok(toml::from_str(s!(str).as_str())?)
}
}