From 31bfd9bf797d9f28841d7995a489f5262f092bd3 Mon Sep 17 00:00:00 2001 From: Lachezar Lechev Date: Tue, 1 Oct 2024 11:42:40 +0300 Subject: [PATCH] fix: import Signed-off-by: Lachezar Lechev --- .../src/model/fields/streaming_server.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/stremio-core-protobuf/src/model/fields/streaming_server.rs b/stremio-core-protobuf/src/model/fields/streaming_server.rs index b48efa9..82e52cf 100644 --- a/stremio-core-protobuf/src/model/fields/streaming_server.rs +++ b/stremio-core-protobuf/src/model/fields/streaming_server.rs @@ -1,7 +1,9 @@ -use stremio_core::models::streaming_server::{ - PlaybackDevice, Selected as StreamingServerSelected, StatisticsRequest, StreamingServer, +use stremio_core::{ + models::streaming_server::{ + PlaybackDevice, Selected as StreamingServerSelected, StreamingServer, + }, + types::streaming_server::{StatisticsRequest, Settings, Statistics}, }; -use stremio_core::types::streaming_server::{Settings, Statistics}; use crate::bridge::{FromProtobuf, ToProtobuf}; use crate::protobuf::stremio::core::models;