Felix
05/07/2024, 3:31 PMimport monolit
...
func test() {
let a = monolit.submoduleA.object1
let b = monolit.submoduleB.object2
}
...
2.
How would you tackle duplication in a good way?
Lets for example say that both submoduleA and submoduleB has two different data models, but both are called "Product". Right now the compiler would throw a duplication error since everything gets merged together in the umbrella.