refactor: move du from platform to filesystem (#11852)

# Description
`du` command shouldn't belong to `platform`, so I think we should move
it to `filesystem` directory
This commit is contained in:
Wind
2024-02-15 06:55:21 +08:00
committed by GitHub
parent a603b067e5
commit fd7eef1499
6 changed files with 3 additions and 3 deletions

View File

@ -21,6 +21,7 @@ mod default;
mod detect_columns;
mod do_;
mod drop;
mod du;
mod each;
mod echo;
mod empty;

View File

@ -1,3 +1,2 @@
mod ansi_;
mod du;
mod kill;