extract reader to mod

This commit is contained in:
Nikita Galaiko 2023-05-08 07:44:28 +02:00
parent 4b92d52636
commit 5dd48b69ab
4 changed files with 6 additions and 3 deletions

View File

@ -11,8 +11,5 @@ pub mod users;
pub mod watcher;
mod writer;
#[cfg(test)]
mod reader_tests;
pub use app::{AddProjectError, App};
pub use project_repository::FileStatus;

View File

@ -0,0 +1,6 @@
mod reader;
#[cfg(test)]
mod reader_tests;
pub use reader::{CommitReader, Content, DirReader, Error, Reader};