jfeliu007 / goplantuml

PlantUML Class Diagram Generator for golang projects
MIT License
1.77k stars 166 forks source link

Add option: Representing dependencies of structures within the same package in a UML class diagram #165

Open GenkiHirano opened 2 months ago

GenkiHirano commented 2 months ago

I want to express the dependencies of structures within the same package in a URL diagram. I would be happy if you implement it.

package model

type Address struct {
    postalCode      postalCode
    prefecture      string    
    city            string   
    streetAndNumber string
    buildingAndRoom string
}

type postalCode struct {
    string
}