Hi everyone, How can I import all variables defined in a custom module?

currently I use

include(“.ProgramConstants.jl”)
import .ProgramConstantsModule
println(ProgramConstantsModule.BATCH_DIM)

to access the BATCH_DIM variable (which is a variable in the ProgramConstants.jl file), but is there any way that instead of using ProgramConstantsModule.BATCH_DIM I only use BATCH_DIM?

Thanks

Remove module ProgramConstantsModule from the included file.