Skip to content

Commit

Permalink
CHORE: renamed io:common to io:file_readers
Browse files Browse the repository at this point in the history
  • Loading branch information
sander-willems-bruker committed Jun 14, 2024
1 parent 0ae839d commit 72217a9
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/file_readers/spectrum_readers/mini_tdf_reader.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::{
file_readers::FileFormatError,
io::readers::common::tdf_blobs::{
io::readers::file_readers::tdf_blobs::{
IndexedTdfBlobReader, TdfBlob, TdfBlobParsable,
},
};
Expand Down
2 changes: 1 addition & 1 deletion src/io/readers.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pub(crate) mod common;
pub(crate) mod file_readers;
pub mod frame_reader;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/io/readers/frame_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use rayon::iter::{IntoParallelIterator, ParallelIterator};

use crate::ms_data::{AcquisitionType, Frame, MSLevel};

use super::common::{
use super::file_readers::{
sql_frames::SqlFrame,
sql_reader::{SqlReadable, SqlReader},
tdf_blobs::{TdfBlob, TdfBlobReader},
Expand Down

0 comments on commit 72217a9

Please sign in to comment.