Fix issues with windows build

Signed-off-by: trivernis <trivernis@protonmail.com>
pull/4/head
trivernis 3 years ago
parent 019ff0a266
commit 31f0345fbe

@ -7,7 +7,7 @@ use mediarepo_model::repo::Repo;
use mediarepo_model::type_keys::RepoKey; use mediarepo_model::type_keys::RepoKey;
use std::net::{IpAddr, SocketAddr}; use std::net::{IpAddr, SocketAddr};
use std::sync::Arc; use std::sync::Arc;
use tokio::net::{TcpListener, UnixListener}; use tokio::net::TcpListener;
use tokio::task::JoinHandle; use tokio::task::JoinHandle;
mod from_model; mod from_model;
@ -46,6 +46,7 @@ pub fn create_unix_socket(
repo: Repo, repo: Repo,
) -> RepoResult<JoinHandle<()>> { ) -> RepoResult<JoinHandle<()>> {
use std::fs; use std::fs;
use tokio::net::UnixListener;
if path.exists() { if path.exists() {
fs::remove_file(&path)?; fs::remove_file(&path)?;

Loading…
Cancel
Save