21 lines
419 B
Rust
21 lines
419 B
Rust
mod markdown_web;
|
|
mod weatherapi;
|
|
|
|
pub use markdown_web::MarkdownWeb;
|
|
pub use weatherapi::WeatherApi;
|
|
|
|
use serde::Deserialize;
|
|
|
|
#[async_trait::async_trait]
|
|
pub trait Collector {
|
|
async fn collect(&mut self) -> anyhow::Result<String>;
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct CollectorConfig {
|
|
pub markdown_web_links: Vec<String>,
|
|
|
|
pub weatherapi_key: Option<String>,
|
|
pub weatherapi_locations: Vec<String>,
|
|
}
|