Add custom error type for the backend

This commit is contained in:
Elias Projahn 2021-02-04 16:31:37 +01:00
parent 4ad7a1fb28
commit 5a41d5008f
14 changed files with 44 additions and 44 deletions

View file

@ -1,4 +1,3 @@
use anyhow::Result;
use futures_channel::mpsc;
use std::cell::RefCell;
use std::path::PathBuf;
@ -10,6 +9,9 @@ pub use client::*;
pub mod database;
pub use database::*;
pub mod error;
pub use error::*;
pub mod library;
pub use library::*;