Browse Source

Move filetree to file_tree to unify file names.

Mathias Gottschlag 5 years ago
parent
commit
f78208eb60
2 changed files with 2 additions and 2 deletions
  1. 0
    0
      src/file_tree.rs
  2. 2
    2
      src/lib.rs

src/filetree.rs → src/file_tree.rs View File


+ 2
- 2
src/lib.rs View File

2
 
2
 
3
 mod database;
3
 mod database;
4
 mod file_system_watcher;
4
 mod file_system_watcher;
5
-mod filetree;
5
+mod file_tree;
6
 
6
 
7
 pub use database::Database;
7
 pub use database::Database;
8
 pub use file_system_watcher::FileSystemWatcher;
8
 pub use file_system_watcher::FileSystemWatcher;
9
-pub use filetree::FileTree;
9
+pub use file_tree::FileTree;
10
 
10
 
11
 // Sketch of the synchronization algorithm:
11
 // Sketch of the synchronization algorithm:
12
 //
12
 //

Loading…
Cancel
Save