Move player to backend module

This commit is contained in:
Elias Projahn 2021-02-03 23:24:41 +01:00
parent 9057ec32ed
commit df78aa17ad
8 changed files with 8 additions and 9 deletions

View file

@ -1,4 +1,3 @@
use crate::player::Player;
use anyhow::Result;
use futures_channel::mpsc;
use std::cell::RefCell;
@ -14,6 +13,9 @@ pub use database::*;
pub mod library;
pub use library::*;
pub mod player;
pub use player::*;
mod secure;
/// General states the application can be in.