package_manager_detector_rs/
lib.rs

1pub(crate) mod commands;
2pub(crate) mod constants;
3pub(crate) mod detect;
4pub(crate) mod tests;
5
6// re-exports function for provides a clean, direct import path,
7// and hides the internal module structure from users of the library
8pub use commands::construct_command;
9pub use commands::resolve_command;
10pub use commands::COMMANDS;
11pub use constants::AGENTS;
12pub use constants::INSTALL_PAGE;
13pub use constants::LOCKS;
14pub use detect::detect;
15pub use detect::get_user_agent;