From 5c15c3e07566da6286ac0659bc6ca1f7d47d0bf1 Mon Sep 17 00:00:00 2001 From: Raine Date: Sat, 14 Oct 2023 22:39:48 +0200 Subject: [PATCH] fix: more comments --- pkgr/src/main.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgr/src/main.rs b/pkgr/src/main.rs index 04a8ec4..41f4689 100644 --- a/pkgr/src/main.rs +++ b/pkgr/src/main.rs @@ -3,12 +3,19 @@ use log::trace; use crate::commands::Cli; +/// pkgr's commands. mod commands; +/// Logging implementations for pkgr. mod logging; +/// Package and helpers. mod package; +/// Process wrapper with logging wrapper. mod process; +/// tmpfs wrapper. mod tmpfs; +/// pkgr's optional config. mod config; +/// custom types used by pkgr mod types; thread_local! {