From 2c544a7c95dee44f61cd6c03aa3f8f408fa29eef Mon Sep 17 00:00:00 2001 From: Mubashwer Salman Khurshid Date: Mon, 3 Apr 2023 00:58:04 +1000 Subject: [PATCH] fix: make commands module private --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index b17cecd..99f61c6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,3 @@ pub mod cli; pub mod coauthor_repo; -pub mod commands; +mod commands;