feat: add unalias to deprecated command (#4440)

This commit is contained in:
Justin Ma
2022-02-12 23:06:52 +08:00
committed by GitHub
parent cc171b6ad4
commit baf6348e66
3 changed files with 39 additions and 0 deletions

View File

@ -3,12 +3,14 @@ mod nth;
mod pivot;
mod str_decimal;
mod str_int;
mod unalias;
pub use insert::InsertDeprecated;
pub use nth::NthDeprecated;
pub use pivot::PivotDeprecated;
pub use str_decimal::StrDecimalDeprecated;
pub use str_int::StrIntDeprecated;
pub use unalias::UnaliasDeprecated;
#[cfg(feature = "dataframe")]
mod dataframe;