mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-27 08:38:58 +00:00
bd38457adc
1. Removed unused `unzip_file` and `download_file` methods from `utils/helper.rs`. 2. Removed `reqwest` and `zip` crates from `Cargo.toml`.
10 lines
142 B
Rust
10 lines
142 B
Rust
mod components;
|
|
mod route;
|
|
mod utils;
|
|
mod views;
|
|
|
|
fn main() {
|
|
let _worker_guard = utils::init_logger();
|
|
dioxus::launch(views::App);
|
|
}
|