refactor(card_database): Accurately name card database
This commit is contained in:
parent
3df19c8496
commit
cc27ab5b6d
8 changed files with 16 additions and 16 deletions
|
|
@ -16,7 +16,7 @@
|
|||
// along with yugioh-binder. If not, see <https://www.gnu.org/licenses/>.
|
||||
use std::time::Duration;
|
||||
|
||||
use draft_manager::database::BrowserDatabase;
|
||||
use draft_manager::card_database::CardDatabase;
|
||||
use leptos::prelude::*;
|
||||
use wasm_bindgen_futures::spawn_local;
|
||||
|
||||
|
|
@ -25,7 +25,7 @@ fn main() {
|
|||
wasm_logger::init(wasm_logger::Config::default());
|
||||
|
||||
log::debug!("Startin app database");
|
||||
let db = BrowserDatabase::new();
|
||||
let db = CardDatabase::new();
|
||||
log::debug!("Database initialized");
|
||||
|
||||
leptos::mount::mount_to_body(|| view! { <App /> });
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue