Skip to content

Commit

Permalink
update: Fix package name
Browse files Browse the repository at this point in the history
  • Loading branch information
0x-shanks committed Feb 1, 2021
1 parent adff045 commit 87b7cf1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"fmt"
"github.com/hourglasshoro/graphmize/pkg/file"
"github.com/hourglasshoro/graphmize/pkg/graph"
"github.com/hourglasshoro/graphmize/pkg/graph_path"
"github.com/hourglasshoro/graphmize/pkg/imput"
homedir "github.com/mitchellh/go-homedir"
"github.com/pkg/errors"
"github.com/spf13/afero"
Expand Down Expand Up @@ -49,7 +49,7 @@ You can open a dashboard in your browser and see a graph of dependencies represe
if err != nil {
return errors.Wrap(err, "cannot get current dir")
}
graphDir := graph_path.Solve(source, currentDir)
graphDir := imput.Solve(source, currentDir)
graph, err := graph.BuildGraph(*ctx, graphDir)
if err != nil {
return errors.Wrap(err, "cannot build graph")
Expand Down
2 changes: 1 addition & 1 deletion pkg/graph_path/solve.go → pkg/imput/solve.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package graph_path
package imput

import (
"path"
Expand Down
2 changes: 1 addition & 1 deletion pkg/graph_path/solve_test.go → pkg/imput/solve_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package graph_path
package imput

import (
"github.com/stretchr/testify/assert"
Expand Down

0 comments on commit 87b7cf1

Please sign in to comment.