I need to have a variable volume_path for my project.
volume_path is set in .env file, so I have 2 definition for it:
.env
.env.testing
In my code, I will set the var to:
var Volume_path = os.Getenv("VOLUME_PATH")
I know how to do it to set this var in each file, but I would like to define it just once, and make it accesible for all the project, is it possible ?
os.Getenv("VOLUME_PATH")really so long to write compared to importing a variable from another file?