mirror of
https://github.com/pimalaya/himalaya.git
synced 2026-06-18 14:07:54 +08:00
allow module inception
Reasons: - The containing module is already reexported, so repitition in namespace is unnecessary. Signed-off-by: Perma Alesheikh <me@prma.dev>
This commit is contained in:
committed by
Clément DOUIN
parent
fc59757a9d
commit
a15e2c0442
@@ -1,4 +1,5 @@
|
||||
pub mod args;
|
||||
#[allow(clippy::module_inception)]
|
||||
pub mod output;
|
||||
|
||||
pub use output::*;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
pub mod print;
|
||||
pub mod print_table;
|
||||
#[allow(clippy::module_inception)]
|
||||
pub mod printer;
|
||||
|
||||
pub use print::*;
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
pub mod arg;
|
||||
#[allow(clippy::module_inception)]
|
||||
pub mod table;
|
||||
|
||||
pub use table::*;
|
||||
|
||||
Reference in New Issue
Block a user