Refactored handlers and UI to have a separate radarr module, and implemented movie search functionality for existing movies.

This commit is contained in:
2023-08-08 10:50:04 -06:00
parent 3f378fb25a
commit a304367e0e
14 changed files with 1263 additions and 929 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ async fn start_ui(app: &Arc<Mutex<App>>) -> Result<()> {
break;
}
handlers::handle_key_events(key, &mut app).await;
handlers::handle_events(key, &mut app);
}
InputEvent::Tick => app.on_tick(is_first_render).await,