grouped imports more nicely

This commit is contained in:
132nd-Professor
2021-07-17 21:23:58 +02:00
parent f09fb480ef
commit 64cb0879e2
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -1,6 +1,7 @@
pub mod lib { pub mod lib {
use std::io::Write; use std::io::Write;
use std::fs; use std::fs;
use zip; use zip;
const ERR_CANNOT_WRITE_DATA: &str = "Could not write data"; const ERR_CANNOT_WRITE_DATA: &str = "Could not write data";
+2 -1
View File
@@ -1,7 +1,8 @@
use std::{fs, str}; use std::{fs, str};
use std::io::{BufRead, BufReader}; use std::io::{BufRead, BufReader};
use zip; use zip;
use tacview_splitter::lib; use tacview_splitter::lib;
use tacview_splitter::lib::Handling; use tacview_splitter::lib::Handling;