I'm facing an issue where two modules (A and B) with controllers of the same name are conflicting when imported into module C.
Is there a recommended solution to prevent this conflict, such as using a naming convention like "module.controller" for each controller?
Thank you!
Update
Below is a snippet of code showcasing the problem:
module('a',[]).controller("con");
module('b',[]).controller("con");
module('c', ['a','b']) // controller from module 'a' overrides controller from module 'b'