gouml
gouml copied to clipboard
Automatically generate PlantUML from Go Code.
Results
12
gouml issues
Sort by
recently updated
recently updated
newest added
```go package foo type Foo string func (Foo) Use() bool { bar.Bar(5) } ``` ```go package bar type Bar int ``` converted ```uml class "Foo" as f { } class...