From eda7c6528a90f8120da226bf739bd0c7930634ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hans=20M=C3=BCndelein?= Date: Fri, 2 Jun 2023 14:40:45 +0200 Subject: [PATCH] Adjust core to new proto spec --- crabidy-core/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crabidy-core/src/lib.rs b/crabidy-core/src/lib.rs index 31b11c5..d72ca7c 100644 --- a/crabidy-core/src/lib.rs +++ b/crabidy-core/src/lib.rs @@ -1,7 +1,7 @@ pub mod proto; use async_trait::async_trait; -use proto::crabidy::{LibraryNode, LibraryNodeChild, LibraryNodeState, Queue, Track}; +use proto::crabidy::{LibraryNode, LibraryNodeChild, Queue, Track}; #[async_trait] pub trait ProviderClient: std::fmt::Debug + Send + Sync { @@ -38,7 +38,6 @@ impl LibraryNode { title: "/".to_string(), children: Vec::new(), parent: None, - state: LibraryNodeState::Unspecified as i32, tracks: Vec::new(), is_queable: false, }