10 lines
174 B
Rust
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>, ()>;
|
|
}
|