pkg_rs/lib.rs
1pub const DEFAULT_CONFIG_FILE_NAME: &str = ".config";
2pub const DEFAULT_CONFIG_FILE_EXTENSION: &str = "kdl";
3pub const DEFAULT_LOG_DIR: &str = "/var/log/pkg";
4pub const DEFAULT_WORKING_DIR: &str = "/var/tmp/pkg";
5
6pub mod config;
7
8pub mod input;
9pub use input::Bridge;
10
11pub mod db;
12use db::{Pkg, PkgType, Version as PkgVersion};
13
14pub mod bridge;
15
16pub mod fs;
17
18pub mod cmd;
19
20#[cfg(test)]
21mod test;