Refactor: move playable models to separate module

This commit is contained in:
Henrik Friedrichsen
2021-11-08 20:44:07 +01:00
parent 2d1923f4e7
commit 74b4e65b64
27 changed files with 86 additions and 83 deletions

View File

@@ -18,27 +18,21 @@ use librespot_core::cache::Cache;
use librespot_playback::audio_backend;
use log::{error, info, trace};
mod album;
mod artist;
mod authentication;
mod command;
mod commands;
mod config;
mod episode;
mod events;
mod library;
mod playable;
mod playlist;
mod model;
mod queue;
mod serialization;
mod sharing;
mod show;
mod spotify;
mod spotify_api;
mod spotify_url;
mod spotify_worker;
mod theme;
mod track;
mod traits;
mod ui;
mod utils;