dotenvx 0.2.2

A secure environment variable management tool with built-in encryption
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod decrypt;
pub mod encrypt;
pub mod get;
pub mod keypair;
pub mod ls;
pub mod printenv;
pub mod run;
pub mod set;

pub use decrypt::decrypt_command;
pub use encrypt::encrypt_command;
pub use get::get_command;
pub use keypair::keypair_command;
pub use ls::ls_command;
pub use printenv::printenv_command;
pub use run::run_command;
pub use set::set_command;