Initial Radarr ui!

This commit is contained in:
2023-08-08 10:50:04 -06:00
parent 3ae7e15961
commit 1ebf481326
11 changed files with 245 additions and 82 deletions
+6 -2
View File
@@ -1,9 +1,13 @@
use chrono::{DateTime, Utc};
#[derive(Default, Debug)]
use crate::app::StatefulTable;
use crate::network::radarr::Movie;
#[derive(Default)]
pub struct RadarrData {
pub free_space: u64,
pub total_space: u64,
pub version: String,
pub start_time: DateTime<Utc>
pub start_time: DateTime<Utc>,
pub movies: StatefulTable<Movie>
}