goplantuml icon indicating copy to clipboard operation
goplantuml copied to clipboard

Why aren't they convergent?

Open dancheng9999 opened this issue 8 months ago • 0 comments

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

image

dancheng9999 avatar Jun 16 '24 08:06 dancheng9999