rename backend/err.rs -> error.rs

This commit is contained in:
Damien Elmes 2021-04-03 14:47:52 +10:00
parent f666f15b63
commit fe6888f9a4
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ mod config;
mod dbproxy; mod dbproxy;
mod deckconfig; mod deckconfig;
mod decks; mod decks;
mod err; mod error;
mod generic; mod generic;
mod i18n; mod i18n;
mod media; mod media;
@ -61,7 +61,7 @@ use std::{
}; };
use tokio::runtime::{self, Runtime}; use tokio::runtime::{self, Runtime};
use self::err::anki_error_to_proto_error; use self::error::anki_error_to_proto_error;
pub struct Backend { pub struct Backend {
col: Arc<Mutex<Option<Collection>>>, col: Arc<Mutex<Option<Collection>>>,