add missing docs

This commit is contained in:
steven-omaha
2023-02-14 15:01:01 +01:00
parent d982149595
commit c490c660b4
10 changed files with 88 additions and 29 deletions
+5 -2
View File
@@ -6,11 +6,12 @@
clippy::unwrap_used,
clippy::use_debug,
clippy::use_self,
clippy::wildcard_dependencies
clippy::wildcard_dependencies,
missing_docs
)]
mod action;
pub mod args;
mod args;
mod backend;
mod cmd;
mod config;
@@ -22,10 +23,12 @@ mod review;
mod search;
mod ui;
pub use crate::args::get as get_args;
pub use crate::config::Config;
pub use crate::core::Pacdef;
pub use crate::grouping::Group;
pub(crate) use crate::grouping::Package;
pub use crate::path::{get_config_path, get_pacdef_group_dir};
pub use crate::search::NO_PACKAGES_FOUND;
extern crate pacdef_macros;