aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorTeddy Wing2020-08-02 05:31:48 +0200
committerTeddy Wing2020-08-02 05:31:48 +0200
commit74b68435b29b18f0bed423ec1b7d011ad41d8031 (patch)
tree4cf47b384c2570e42f33f36676a2ca4238aebdd4 /src/lib.rs
parent344f4d3fcd7d36e67ca04dd2e3e21f0e8b12b0dd (diff)
downloadgit-suggestion-74b68435b29b18f0bed423ec1b7d011ad41d8031.tar.bz2
lib.rs: Make `owner_repo` module private
Turns out this didn't need to be public at all.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index e2ac7ea..e9038dc 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -3,9 +3,8 @@
pub mod config;
pub mod error;
-pub(crate) mod owner_repo;
-
mod arg;
+mod owner_repo;
mod suggestion;