jldb/dep-graph.sh

10 lines
112 B
Bash
Raw Normal View History

2023-10-13 09:43:27 +00:00
#!/bin/bash
godepgraph \
-s \
-p github.com \
./$1 > .deps.dot &&
xdot .deps.dot
rm .deps.dot