fix: more comments
This commit is contained in:
parent
4ddf1c04ec
commit
9d8c9154b0
1 changed files with 7 additions and 0 deletions
|
@ -3,12 +3,19 @@ use log::trace;
|
||||||
|
|
||||||
use crate::commands::Cli;
|
use crate::commands::Cli;
|
||||||
|
|
||||||
|
/// pkgr's commands.
|
||||||
mod commands;
|
mod commands;
|
||||||
|
/// Logging implementations for pkgr.
|
||||||
mod logging;
|
mod logging;
|
||||||
|
/// Package and helpers.
|
||||||
mod package;
|
mod package;
|
||||||
|
/// Process wrapper with logging wrapper.
|
||||||
mod process;
|
mod process;
|
||||||
|
/// tmpfs wrapper.
|
||||||
mod tmpfs;
|
mod tmpfs;
|
||||||
|
/// pkgr's optional config.
|
||||||
mod config;
|
mod config;
|
||||||
|
/// custom types used by pkgr
|
||||||
mod types;
|
mod types;
|
||||||
|
|
||||||
thread_local! {
|
thread_local! {
|
||||||
|
|
Loading…
Reference in a new issue