From 352ad7bb0945d96e6af9e00323a58302a14786b8 Mon Sep 17 00:00:00 2001 From: itiB Date: Thu, 29 Oct 2020 23:02:37 +0900 Subject: [PATCH] cargo fmt --all --- src/detections/powershell.rs | 2 +- src/detections/print.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;