This commit is contained in:
Simon
2025-05-31 09:28:30 +00:00
parent f0fcd91545
commit 96b914fb2e
11 changed files with 859 additions and 1 deletions

6
src/providers/mod.rs Normal file
View File

@@ -0,0 +1,6 @@
use crate::videos::{Video_Item, Videos};
pub mod perverzija;
pub trait Provider{
async fn get_videos(&self, channel: String, sort: String, query: Option<String>, page: String, per_page: String, featured: String) -> Vec<Video_Item>;
}