Add support for MusicBrainz's Browse API #228

Merged
wojtek merged 9 commits from 160---provide-a-keyboard-shortcut-to-pull-all-release-groups-of-an-artist into main 2024-09-29 21:33:43 +02:00
3 changed files with 5 additions and 3 deletions
Showing only changes of commit a8443c378c - Show all commits

View File

@ -1,7 +1,7 @@
use crate::tui::app::{ use crate::tui::app::{
machine::{App, AppInner, AppMachine}, machine::{App, AppInner, AppMachine},
selection::ListSelection, selection::ListSelection,
AppPublicState, AppState, IAppInteractBrowse, Delta AppPublicState, AppState, Delta, IAppInteractBrowse,
}; };
pub struct BrowseState; pub struct BrowseState;

View File

@ -9,7 +9,8 @@ use crate::tui::app::{
selection::{ selection::{
track::{KeySelectTrack, TrackSelection}, track::{KeySelectTrack, TrackSelection},
SelectionState, SelectionState,
}, Delta, WidgetState },
Delta, WidgetState,
}; };
#[derive(Clone, Debug, PartialEq)] #[derive(Clone, Debug, PartialEq)]

View File

@ -10,7 +10,8 @@ use crate::tui::app::{
selection::{ selection::{
album::{AlbumSelection, KeySelectAlbum}, album::{AlbumSelection, KeySelectAlbum},
SelectionState, SelectionState,
}, Delta, WidgetState },
Delta, WidgetState,
}; };
#[derive(Clone, Debug, PartialEq)] #[derive(Clone, Debug, PartialEq)]