Properly reexport backend modules

This commit is contained in:
Elias Projahn 2021-02-05 10:56:42 +01:00
parent 54b9fae657
commit 15d78a8b0f
26 changed files with 32 additions and 37 deletions

View file

@ -1,19 +1,18 @@
use futures_channel::mpsc;
use gio::prelude::*;
use log::warn;
use musicus_client::{Client, LoginData};
use musicus_database::DbThread;
use std::cell::RefCell;
use std::path::PathBuf;
use std::rc::Rc;
pub use musicus_client::*;
pub use musicus_database::*;
pub use musicus_client as client;
pub use musicus_database as db;
pub mod error;
pub use error::*;
// Override the identically named types from the other crates.
pub use error::{Error, Result};
pub mod library;
pub use library::*;