Give up, change import paths to the fork.

This commit is contained in:
Marcin Bilski 2022-01-05 11:31:44 +01:00
parent 48d1cf9ff8
commit 9624b2b9ad
7 changed files with 7 additions and 14 deletions

View File

@ -16,7 +16,7 @@ import (
"time" "time"
"unicode" "unicode"
"github.com/sixt/gomodproxy/pkg/api" "github.com/bilus/gomodproxy/pkg/api"
"expvar" "expvar"
_ "net/http/pprof" _ "net/http/pprof"

7
go.mod
View File

@ -2,9 +2,4 @@ module github.com/bilus/gomodproxy
go 1.16 go 1.16
replace github.com/sixt/gomodproxy => github.com/bilus/gomodproxy v0.1.11-0.20220105101957-b4d9e12f70da require gopkg.in/src-d/go-git.v4 v4.13.1
require (
github.com/sixt/gomodproxy v0.0.0-00010101000000-000000000000
gopkg.in/src-d/go-git.v4 v4.13.1
)

2
go.sum
View File

@ -4,8 +4,6 @@ github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239 h1:kFOfPq6dUM1hTo
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c= github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c=
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio=
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
github.com/bilus/gomodproxy v0.1.11-0.20220105101957-b4d9e12f70da h1:yugRNA3YLIRfyEDycuqHt7woPZRjbJCBlTq5OA3wSH0=
github.com/bilus/gomodproxy v0.1.11-0.20220105101957-b4d9e12f70da/go.mod h1:yL7TgO8kvphTxrX9ad7rvZ+9pz2BHguDHO6Soj1U65w=
github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=

View File

@ -15,8 +15,8 @@ import (
"time" "time"
"unicode" "unicode"
"github.com/sixt/gomodproxy/pkg/store" "github.com/bilus/gomodproxy/pkg/store"
"github.com/sixt/gomodproxy/pkg/vcs" "github.com/bilus/gomodproxy/pkg/vcs"
) )
type logger = func(v ...interface{}) type logger = func(v ...interface{})

View File

@ -6,7 +6,7 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"github.com/sixt/gomodproxy/pkg/vcs" "github.com/bilus/gomodproxy/pkg/vcs"
) )
type disk string type disk string

View File

@ -5,7 +5,7 @@ import (
"errors" "errors"
"sync" "sync"
"github.com/sixt/gomodproxy/pkg/vcs" "github.com/bilus/gomodproxy/pkg/vcs"
) )
type memory struct { type memory struct {

View File

@ -4,7 +4,7 @@ import (
"context" "context"
"time" "time"
"github.com/sixt/gomodproxy/pkg/vcs" "github.com/bilus/gomodproxy/pkg/vcs"
) )
type logger = func(...interface{}) type logger = func(...interface{})