We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With the deprecation of from_filename and finding in this crate, this functionality is needed for the dotenv! macro to be updated.
from_filename
dotenv!
It should follow the design of the runtime attribute macro, #[load(path = "./.env", required = true, override_ = false).
#[load(path = "./.env", required = true, override_ = false
The text was updated successfully, but these errors were encountered:
Is something along the lines of:
dotenvy_macro::load!("./.env", true, false)
What you're looking for? If not, could you please provide an example.
Sorry, something went wrong.
It should follow the attribute macro.
Like:
load!(path = "./.env", required = true, override_ = false)
#[load]
No branches or pull requests
With the deprecation of
from_filename
and finding in this crate, this functionality is needed for thedotenv!
macro to be updated.It should follow the design of the runtime attribute macro,
#[load(path = "./.env", required = true, override_ = false
).The text was updated successfully, but these errors were encountered: