mirror of
https://github.com/shimunn/aria2xspf.git
synced 2023-11-17 09:27:54 +01:00
11 lines
189 B
Rust
11 lines
189 B
Rust
#[derive(Deserialize, Default)]
|
|
pub struct Config {
|
|
pub include: Includes,
|
|
}
|
|
|
|
#[derive(Deserialize, Default)]
|
|
pub struct Includes {
|
|
pub js: Vec<String>,
|
|
pub css: Vec<String>,
|
|
}
|