goplantuml icon indicating copy to clipboard operation
goplantuml copied to clipboard

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

Open GenkiHirano opened this issue 1 year ago • 0 comments

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
}

GenkiHirano avatar Apr 21 '24 15:04 GenkiHirano