cargo fmt

This commit is contained in:
DustInDark
2022-06-13 02:10:46 +09:00
parent f28ba4ae0c
commit 7e1551a4f8

View File

@@ -3,12 +3,12 @@ use crate::detections::pivot::PIVOT_KEYWORD;
use crate::detections::print::AlertMessage;
use crate::detections::utils;
use chrono::{DateTime, Utc};
use clap::{Command, ArgMatches, CommandFactory, Parser};
use clap::{ArgMatches, Command, CommandFactory, Parser};
use hashbrown::HashMap;
use hashbrown::HashSet;
use std::path::PathBuf;
use lazy_static::lazy_static;
use regex::Regex;
use std::path::PathBuf;
use std::sync::RwLock;
lazy_static! {
pub static ref CONFIG: RwLock<ConfigReader<'static>> = RwLock::new(ConfigReader::new());