From 4adbb18b9e0116afe552d3578c95379ac51e0197 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 2 Aug 2020 04:57:39 +0200 Subject: lib.rs: Make `owner_repo` `pub(crate)` again Made this `pub` for one of the test tries in 38a871f28bad90e238021d8cc46b9fa926f9df75, but in the end it wasn't necessary. Restore this to the prior visibility. --- src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index af0e7bb..0a8ab13 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,8 @@ pub mod config; pub mod error; -pub mod owner_repo; + +pub(crate) mod owner_repo; mod arg; -- cgit v1.2.3