I have the following code:
@startuml
class A
class B
class X
A -(0-- X : IF1
B -(0-- X : IF1
@enduml
This shows a diagram with two interfaces, but I want both classes A and B to connect to a single lollypop interface (not two).
Is this possible, and if yes, what should I change in the code?
Thanks in advance