lowfi/src/scrapers.rs
Tal 3f55768754 feat: start work on chillhop scraper
only the basic get request with caching has actually been implemented,
but the rest shouldn't be too complicated.
2025-08-07 15:18:04 +02:00

11 lines
164 B
Rust

use clap::ValueEnum;
pub mod chillhop;
pub mod lofigirl;
#[derive(Clone, Copy, PartialEq, Eq, Debug, ValueEnum)]
pub enum Sources {
Lofigirl,
Chillhop,
}