Consider qualified re-exports in domain ports module #21
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Severity: Low
crates/domain/src/ports/mod.rsre-exports every submodule withpub use module::*. This works but with 17 submodules, when you seedomain::ports::SomeType, you cannot tell which submodule it came from without grepping.Qualified re-exports (
pub use auth::AuthService) would improve navigability. Not urgent — this is a common Rust pattern for facade modules.