mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
rename backend/err.rs -> error.rs
This commit is contained in:
parent
f666f15b63
commit
fe6888f9a4
2 changed files with 2 additions and 2 deletions
|
@ -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>>>,
|
||||
|
|
Loading…
Reference in a new issue