aob-lemmy-bot/src/fetchers/mod.rs

10 lines
187 B
Rust

use async_trait::async_trait;
pub mod jnovel;
mod tobooks;
#[async_trait]
pub(crate) trait Fetcher {
type Return;
async fn check_feed(&self) -> Result<Vec<Self::Return>, ()>;
}