diff options
author | Teddy Wing | 2020-08-02 05:31:48 +0200 |
---|---|---|
committer | Teddy Wing | 2020-08-02 05:31:48 +0200 |
commit | 74b68435b29b18f0bed423ec1b7d011ad41d8031 (patch) | |
tree | 4cf47b384c2570e42f33f36676a2ca4238aebdd4 | |
parent | 344f4d3fcd7d36e67ca04dd2e3e21f0e8b12b0dd (diff) | |
download | git-suggestion-74b68435b29b18f0bed423ec1b7d011ad41d8031.tar.bz2 |
lib.rs: Make `owner_repo` module private
Turns out this didn't need to be public at all.
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -3,9 +3,8 @@ pub mod config; pub mod error; -pub(crate) mod owner_repo; - mod arg; +mod owner_repo; mod suggestion; |