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