Right now, for every module that I have, I need to explicitly specify the packages that I want to export. For instance:
module core {
exports cc.blynk.server.core;
exports cc.blynk.server.core.protocol.handlers.decoders;
exports cc.blynk.server.core.protocol.handlers.encoders;
}
However, this is not very convenient. I would like to do something like this:
module core {
exports cc.blynk.server.core.*;
}
Is there any way to do this? Where does this restriction come from?
source
share