Is it possible to import at once all the classes from my subfolders which share the same folder?
For example, in folder A there’s subfolder A1, A2, A3, A4…A10, in each of these subfolders there’s a class, and I want to import all of them without typing:
import A.A1.*
import A.A2.*
…
thanks