add rust formatting rules

This commit is contained in:
Chance 2024-12-05 11:00:08 -05:00 committed by BitSyndicate
parent 6f264d9278
commit bab618708f
7 changed files with 32 additions and 15 deletions

View file

@ -1,10 +1,11 @@
pub mod commands;
pub mod repl;
use std::{borrow::Borrow, collections::HashMap, sync::Arc};
use lazy_static::lazy_static;
use log::{debug, info};
use parking_lot::RwLock;
use std::{borrow::Borrow, collections::HashMap, sync::Arc};
lazy_static! {
pub static ref COMMAND_LIST: Arc<CommandList> = Arc::new(CommandList::new());