mirror of
https://github.com/johrpan/musicus.git
synced 2025-10-26 19:57:25 +01:00
Properly reexport backend modules
This commit is contained in:
parent
54b9fae657
commit
15d78a8b0f
26 changed files with 32 additions and 37 deletions
|
|
@ -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::*;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue