mirror of
https://github.com/talwat/lowfi
synced 2025-08-17 15:12:37 +00:00
only the basic get request with caching has actually been implemented, but the rest shouldn't be too complicated.
11 lines
164 B
Rust
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,
|
|
}
|