Now, the update command will scrape all non-translation mods and translation mods separately so the is_translation value can be set correctly in the future.
17 lines
489 B
Rust
17 lines
489 B
Rust
pub mod backfills;
|
|
pub mod download_tiles;
|
|
pub mod dump_cell_data;
|
|
pub mod dump_cell_edit_counts;
|
|
pub mod dump_mod_data;
|
|
pub mod dump_mod_search_index;
|
|
pub mod dump_plugin_data;
|
|
pub mod update;
|
|
|
|
pub use download_tiles::download_tiles;
|
|
pub use dump_cell_data::dump_cell_data;
|
|
pub use dump_cell_edit_counts::dump_cell_edit_counts;
|
|
pub use dump_mod_data::dump_mod_data;
|
|
pub use dump_mod_search_index::dump_mod_search_index;
|
|
pub use dump_plugin_data::dump_plugin_data;
|
|
pub use update::update;
|