goplantuml
goplantuml copied to clipboard
Why aren't they convergent?
package student
type Person struct { name string }
type Student struct { person Person }
run command goplantuml -recursive -output ./uml/main.puml ./
@startuml namespace student { class Person << (S,Aquamarine) >> { - name string
}
class Student << (S,Aquamarine) >> {
- person Person
}
}
@enduml