Files
mini_projects/scryfall_deser/src/lib.rs

15 lines
357 B
Rust

mod download;
pub use crate::download::download_latest;
mod deser;
pub use crate::deser::ScryfallCard;
mod db;
pub use db::{
find_matching_cards, find_matching_cards_seperate_words, get_all_card_names,
get_all_lowercase_card_names, get_card_by_name, init_db, update_db_with_file, GetNameType,
};
mod utils;
pub use utils::get_local_cache_folder;