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

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

View File

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

View File

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

View File

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