mirror of
https://github.com/nushell/nushell
synced 2025-01-23 10:25:22 +00:00
89b374cb16
* allow for easy config reset with a single command * add slightly better help, rebase * add option to make no backups, make all backups unique through including UNIX Epoch Time in the filename * time is now formatted in rfc3339 * time is now formatted in a window-friendly format
14 lines
286 B
Rust
14 lines
286 B
Rust
mod config;
|
|
mod env_command;
|
|
mod let_env;
|
|
mod load_env;
|
|
mod with_env;
|
|
|
|
pub use config::ConfigEnv;
|
|
pub use config::ConfigMeta;
|
|
pub use config::ConfigNu;
|
|
pub use config::ConfigReset;
|
|
pub use env_command::Env;
|
|
pub use let_env::LetEnv;
|
|
pub use load_env::LoadEnv;
|
|
pub use with_env::WithEnv;
|