Fixing some path issues on imports.

This commit is contained in:
Dave Shanley
2022-07-18 08:16:58 -04:00
parent 8337bf0ef9
commit 56d5c404c7
3 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ import (
"encoding/json" "encoding/json"
"errors" "errors"
"fmt" "fmt"
"github.com/daveshanley/vacuum/utils" "github.com/pb33f/libopenapi/utils"
"gopkg.in/yaml.v3" "gopkg.in/yaml.v3"
"strings" "strings"
) )

View File

@@ -1,7 +1,7 @@
package datamodel package datamodel
import ( import (
"github.com/daveshanley/vacuum/utils" "github.com/pb33f/libopenapi/utils"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"gopkg.in/yaml.v3" "gopkg.in/yaml.v3"
"testing" "testing"

View File

@@ -6,7 +6,7 @@ package datamodel
import ( import (
"errors" "errors"
"fmt" "fmt"
"github.com/pb33f/libopenapi/libopenapi/utils" "github.com/pb33f/libopenapi/utils"
"github.com/vmware-labs/yaml-jsonpath/pkg/yamlpath" "github.com/vmware-labs/yaml-jsonpath/pkg/yamlpath"
"gopkg.in/yaml.v3" "gopkg.in/yaml.v3"
"io/ioutil" "io/ioutil"