Another option is to call functions by explicitly specifying script name. For example, if you have script
MIKROTIK::Update and function doUpdate within it, instead of doing
you can do
But wildcard import could be useful anyway, I agree on that.
MIKROTIK::Update and function doUpdate within it, instead of doing
Code Select
import MIKROTIK::Update;
doUpdate();
you can do
Code Select
MIKROTIK::Update::doUpdate();
But wildcard import could be useful anyway, I agree on that.