Skip to content

Commit

Permalink
Merge pull request aquasecurity#8 from aquasecurity/transfer
Browse files Browse the repository at this point in the history
Transfer repositoriy
  • Loading branch information
lizrice authored Aug 19, 2019
2 parents 1ef8521 + be44b39 commit ea223f0
Show file tree
Hide file tree
Showing 22 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/knqyf263/go-dep-parser
module github.com/aquasecurity/go-dep-parser

go 1.12

Expand Down
2 changes: 1 addition & 1 deletion pkg/bundler/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package bundler

import (
"bufio"
"github.com/knqyf263/go-dep-parser/pkg/types"
"github.com/aquasecurity/go-dep-parser/pkg/types"
"io"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/bundler/parse_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package bundler

import (
"github.com/knqyf263/go-dep-parser/pkg/types"
"github.com/aquasecurity/go-dep-parser/pkg/types"
"os"
"path"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion pkg/bundler/parse_testcase.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package bundler

import "github.com/knqyf263/go-dep-parser/pkg/types"
import "github.com/aquasecurity/go-dep-parser/pkg/types"

var (
// docker run --name bundler --rm -it ruby:2.6 bash
Expand Down
2 changes: 1 addition & 1 deletion pkg/cargo/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"io"

"github.com/BurntSushi/toml"
"github.com/knqyf263/go-dep-parser/pkg/types"
"github.com/aquasecurity/go-dep-parser/pkg/types"
"golang.org/x/xerrors"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/cargo/parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"testing"

"github.com/knqyf263/go-dep-parser/pkg/types"
"github.com/aquasecurity/go-dep-parser/pkg/types"
"github.com/kylelemons/godebug/pretty"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/cargo/parse_testcase.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package cargo

import "github.com/knqyf263/go-dep-parser/pkg/types"
import "github.com/aquasecurity/go-dep-parser/pkg/types"

var (
// docker run --name cargo --rm -it rust:1.34 bash
Expand Down
2 changes: 1 addition & 1 deletion pkg/composer/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package composer

import (
"encoding/json"
"github.com/knqyf263/go-dep-parser/pkg/types"
"github.com/aquasecurity/go-dep-parser/pkg/types"
"io"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/composer/parse_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package composer

import (
"github.com/knqyf263/go-dep-parser/pkg/types"
"github.com/aquasecurity/go-dep-parser/pkg/types"
"os"
"path"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion pkg/composer/parse_testcase.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package composer

import "github.com/knqyf263/go-dep-parser/pkg/types"
import "github.com/aquasecurity/go-dep-parser/pkg/types"

var (
// docker run --name composer --rm -it composer:1.8 bash
Expand Down
2 changes: 1 addition & 1 deletion pkg/npm/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"io"

"github.com/knqyf263/go-dep-parser/pkg/types"
"github.com/aquasecurity/go-dep-parser/pkg/types"
)

type LockFile struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/npm/parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"testing"

"github.com/knqyf263/go-dep-parser/pkg/types"
"github.com/aquasecurity/go-dep-parser/pkg/types"
"github.com/kylelemons/godebug/pretty"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/npm/parse_testcase.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package npm

import "github.com/knqyf263/go-dep-parser/pkg/types"
import "github.com/aquasecurity/go-dep-parser/pkg/types"

var (
// docker run --name composer --rm -it node:12-alpine sh
Expand Down
2 changes: 1 addition & 1 deletion pkg/pipenv/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"io"
"strings"

"github.com/knqyf263/go-dep-parser/pkg/types"
"github.com/aquasecurity/go-dep-parser/pkg/types"
"golang.org/x/xerrors"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/pipenv/parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"testing"

"github.com/knqyf263/go-dep-parser/pkg/types"
"github.com/aquasecurity/go-dep-parser/pkg/types"
"github.com/kylelemons/godebug/pretty"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/pipenv/parse_testcase.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package pipenv

import "github.com/knqyf263/go-dep-parser/pkg/types"
import "github.com/aquasecurity/go-dep-parser/pkg/types"

var (
// docker run --name pipenv --rm -it python:3.7-alpine bash
Expand Down
2 changes: 1 addition & 1 deletion pkg/poetry/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"io"

"github.com/BurntSushi/toml"
"github.com/knqyf263/go-dep-parser/pkg/types"
"github.com/aquasecurity/go-dep-parser/pkg/types"
"golang.org/x/xerrors"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/poetry/parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"testing"

"github.com/knqyf263/go-dep-parser/pkg/types"
"github.com/aquasecurity/go-dep-parser/pkg/types"
"github.com/kylelemons/godebug/pretty"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/poetry/parse_testcase.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package poetry

import "github.com/knqyf263/go-dep-parser/pkg/types"
import "github.com/aquasecurity/go-dep-parser/pkg/types"

var (
// docker run --name poetry --rm -it jonatkinson/python-poetry:3.7
Expand Down
2 changes: 1 addition & 1 deletion pkg/yarn/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"regexp"
"strings"

"github.com/knqyf263/go-dep-parser/pkg/types"
"github.com/aquasecurity/go-dep-parser/pkg/types"
"golang.org/x/xerrors"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/yarn/parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"testing"

"github.com/knqyf263/go-dep-parser/pkg/types"
"github.com/aquasecurity/go-dep-parser/pkg/types"
"github.com/kylelemons/godebug/pretty"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/yarn/parse_testcase.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package yarn

import "github.com/knqyf263/go-dep-parser/pkg/types"
import "github.com/aquasecurity/go-dep-parser/pkg/types"

var (
// docker run --name composer --rm -it node:12-alpine sh
Expand Down

0 comments on commit ea223f0

Please sign in to comment.