Assume I have a module like this:
module MyModule
import SomePackage
Is there a way to have a piece of code like this
if !haskey(ENV, "SOMEPACKAGE_CONFIG")
ENV["SOMEPACKAGE_CONFIG"] = "BLAH"
end
So that it always runs before import SomePackage
?
If I just put it right before the import it seems to only run when MyModule is precompiled or in some other way is new (updated, changed if deved etc.) while if I put it in __init__()
it runs after.
Last updated: Nov 06 2024 at 04:40 UTC