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

![image](https://user-images.githubusercontent.com/3725760/103756588-8ee36000-504a-11eb-853b-3d0d40198479.png) Type helloworldServiceImpl implements the interface defined in package helloworld, the IS-A relation is not drawed. the generated plantuml is : ```puml @startuml package "main" { class "helloworldServiceImpl" as main.helloworldServiceImpl...

Is should be possible to generate activity diagrams from the code in methods and functions. https://plantuml.com/activity-diagram-beta

the log.Logger interface is being set with a `"` before its name when we make it part of the right hand side of the aggregations

I have requested the same for [bykof/go-plantuml](https://github.com/bykof/go-plantuml/issues/3), but open the same ticket here: It would be nice if `goplantuml` would support top-level functions (instead of only methods). The main problem...

I think I have discovered 2 related problems with the way that named imports are being parsed and rendered. ## Problem 1 `func (p *ClassParser) parseImports(impt *ast.ImportSpec)` is the func...

bug

There have been a few issues in the past (e.g. #3, #50, #49) where the plantuml output contained invalid syntax/content. It might be a good idea to add some output...

enhancement

lets say I have following package structure. ``` - cmd - api - v1 - packageA - packageA1 - packageA2 - packageB - packageB1 - packageB2 ``` currently it does...

enhancement

Provide the CLI flag ```-only-edgeless``` To hide/exclude all Classes with any edges/arrows This would be useful for simplifying/filtering the output. E.g. To easily identify un-connected Classes during an API review....

enhancement

Provide the CLI flag ```-no-edgeless``` To hide/exclude all Classes without any edges/arrows This would be useful for simplifying/filtering the output. E.g. To easily exclude un-connected Classes during an API review...

enhancement