(s string)
| 231 | } |
| 232 | |
| 233 | func capitalizeFirst(s string) string { |
| 234 | if s == "" { |
| 235 | return s |
| 236 | } |
| 237 | return strings.ToUpper(s[:1]) + s[1:] |
| 238 | } |
| 239 | |
| 240 | func writeMarkdownGraph(mermaid string, w io.Writer) { |
| 241 | fmt.Fprintln(w, "## Dependency Graph") |
no outgoing calls
no test coverage detected