mirror of
https://github.com/MrBeanCpp/MIT.git
synced 2026-04-13 17:51:28 +08:00
11 lines
197 B
Rust
11 lines
197 B
Rust
mod cli;
|
|
mod commands;
|
|
mod models;
|
|
mod utils;
|
|
|
|
fn main() {
|
|
color_backtrace::install(); // colorize backtrace
|
|
cli::handle_command();
|
|
models::Index::get_instance().save(); //兜底save
|
|
}
|