goplantuml icon indicating copy to clipboard operation
goplantuml copied to clipboard

PlantUML Class Diagram Generator for golang projects

Results 42 goplantuml issues
Sort by recently updated
recently updated
newest added

``` golang // interface type IPropertySource interface { EqualsName(ps IPropertySource) bool GetName() string GetSource() map[string]any GetProperty(key string) any ContainsProperty(key string) bool } // 部分实现 type NamedPropertySource struct { Name string...

I tried using the -hide-private-members option. This option hides all the private members of each struct or interface, but I still see all the private (unexported) structs without their private...