Hi, the way I'm organizing i like to have multiple folders inside src directory.
The trouble is how to share classes between server and client (example interfaces), the way i found is to add "server" and "client" packages to the files.
It has the disadvantage that its possible to import client package files into server and vice versa, for now I'm using a small check like #if client error #end on server package files.
Is there a more elegant solution for this? Thank you very much.