jldb/dep-graph.sh
2023-10-13 11:43:27 +02:00

10 lines
112 B
Bash
Executable File

#!/bin/bash
godepgraph \
-s \
-p github.com \
./$1 > .deps.dot &&
xdot .deps.dot
rm .deps.dot