Macro zenv::zenv[][src]

macro_rules! zenv {
    () => { ... };
    ($path:expr) => { ... };
    ($path:expr, $expand:expr) => { ... };
}
Expand description

This macro can be used as a shortcut for Zenv

Example

use zenv::zenv;

zenv!();

// with other file
zenv!(".env.development");

// or with variable substitution
zenv!(".env.development", true);