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