Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Mode ¶
type Mode int
Mode controls how dotenv values are applied to the current process env.
const ( // ModePreserve loads dotenv files but does not overwrite environment variables // that are already set in the current process. ModePreserve Mode = iota // ModeOverride loads dotenv files and overwrites any already-set environment // variables in the current process. ModeOverride // ModeOff disables dotenv loading entirely. ModeOff )
Click to show internal directories.
Click to hide internal directories.