From 20b6a12461443d7efe930577e66b18a7e1365b2c Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Thu, 22 Jan 2026 12:22:07 +0300 Subject: [PATCH] stash: make db module public for test visibility Signed-off-by: NotAShelf Change-Id: I5f75e6515114e7479a3fe63771a4e7fe6a6a6964 --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index d925c97..28f9fb0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,7 +8,7 @@ use clap::{CommandFactory, Parser, Subcommand}; use inquire::Confirm; mod commands; -mod db; +pub(crate) mod db; mod multicall; #[cfg(feature = "use-toplevel")] mod wayland;