7 lines
265 B
Rust
7 lines
265 B
Rust
mod update_checker;
|
|
mod version_utils;
|
|
mod plugin_updater;
|
|
|
|
pub use update_checker::{check_for_plugin_updates, check_single_plugin_update};
|
|
pub use version_utils::{normalize_version, compare_plugin_versions};
|
|
pub use plugin_updater::{backup_plugin, replace_plugin}; |