diff --git a/src/detections/powershell.rs b/src/detections/powershell.rs index e9bfc05e..74cef1a6 100644 --- a/src/detections/powershell.rs +++ b/src/detections/powershell.rs @@ -1,6 +1,6 @@ +use crate::detections::print::MESSAGES; use crate::detections::utils; use crate::models::event; -use crate::detections::print::MESSAGES; use regex::Regex; use std::collections::HashMap; diff --git a/src/detections/print.rs b/src/detections/print.rs index 3fb83fbe..c796c41c 100644 --- a/src/detections/print.rs +++ b/src/detections/print.rs @@ -1,8 +1,8 @@ extern crate lazy_static; use crate::detections::configs::{get_lang, Lang}; -use std::collections::HashMap; use crate::models::rule::MessageText; use lazy_static::lazy_static; +use std::collections::HashMap; use std::fmt; use std::sync::Mutex;