goplantuml
goplantuml copied to clipboard
PlantUML Class Diagram Generator for golang projects
even though I am installing the required dependencies I am getting this error ```zsh: command not found: goplantuml``` I've run these commands to install `goplantuml` ``` ❯ go get github.com/jfeliu007/goplantuml/parser...
Bumps [golang.org/x/text](https://github.com/golang/text) from 0.3.7 to 0.3.8. Commits 434eadc language: reject excessively large Accept-Language strings 23407e7 go.mod: ignore cyclic dependency for tagging b18d3dd secure/precis: replace bytes.Compare with bytes.Equal 795e854 all: replace...
When creating multiple views of a project, it is often quite useful to just show how packages relate to one another at the highest levels. It would be great to...
Hello, when I run the tool, the parser raises the following panic and error. A blank `puml` file is generated at the end. ```bash % goplantuml -show-aggregations -show-implementations -show-compositions -recursive...
Hello, Hi!! 👋🏻 I like your project and I think broader Go community will benefit from it too. Thus, I added it to the curated list of Go tools. I...
I want to express the dependencies of structures within the same package in a URL diagram. I would be happy if you implement it. ```go package model type Address struct...
``` type Person struct { age int64 name string } ``` Like this, it is a model and I want to ignore it. Further, can only show that the corresponding...
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 >...
I think this is a bug. Different packages should have different paths. We could use a hash checksum to distinguish between packages with the same name or add the upper-level...
The code to be modified is below, when theType length is 0, will be panic. https://github.com/jfeliu007/goplantuml/blob/b5960c7507ea6208a0baf28762884329544b7090/parser/class_parser.go#L275-L280 error: ~~~ panic: runtime error: index out of range [0] with length 0 goroutine...