diff --git a/pkg/graph/server.go b/pkg/graph/server.go index d8e9d85..3f27f4a 100644 --- a/pkg/graph/server.go +++ b/pkg/graph/server.go @@ -44,6 +44,6 @@ func StartServer(outputDir string) { http.ServeFile(w, r, filePath) }) - fmt.Println("Serving files on http://localhost:8080") + fmt.Printf("Serving files from %s on http://localhost:8080", outputDir) http.ListenAndServe(":8080", nil) }