mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -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 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>>>,
|
||||||
|
|
Loading…
Reference in a new issue