diff options
| author | seth <[email protected]> | 2023-11-16 23:19:29 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-11-18 01:42:03 +0000 |
| commit | 13b54108494b7492b3772ff477ed9a02c56c7972 (patch) | |
| tree | 416247f2cb3404613f60373b59f65c592ce19173 /src/commands/copypasta.rs | |
| parent | 86318aa4aa8a7547e6398342a0c7b609e307dd5d (diff) | |
chore: cleanup imports
Diffstat (limited to 'src/commands/copypasta.rs')
| -rw-r--r-- | src/commands/copypasta.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/commands/copypasta.rs b/src/commands/copypasta.rs index 90d3b0a..14a6673 100644 --- a/src/commands/copypasta.rs +++ b/src/commands/copypasta.rs @@ -1,8 +1,9 @@ -use crate::utils; -use crate::{Context, Error}; +use crate::{utils, Context, Error}; + +use std::collections::HashMap; + use include_dir::{include_dir, Dir}; use log::*; -use std::collections::HashMap; const FILES: Dir = include_dir!("src/copypastas"); |
