Type Method
load(path:)
Reads the dotenv files relevant to the environment and loads them into the process.
static func load(path: String) async
Parameters
pathAbsolute or relative path of the dotenv file.
Discussion
let path: String
try DotEnvFile.load(path: path)
print(Environment.process.FOO) // BAR