aob-lemmy-bot/src/fetchers/mod.rs
Neshura fc4ce74567
All checks were successful
Build binary file and bundle packages / test (pull_request) Successful in 36s
Run Tests on Code / run-tests (push) Successful in 38s
Build binary file and bundle packages / build (pull_request) Successful in 36s
Clippy changes
2024-05-06 21:00:55 +02:00

10 lines
174 B
Rust

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