Update import path
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-10-07 17:34:39 -07:00
parent 7a9cea9702
commit 3f3b575b63
36 changed files with 118 additions and 118 deletions

View File

@@ -24,11 +24,11 @@ import (
"strings"
"github.com/AlecAivazis/survey/v2"
"go.elara.ws/lure/internal/config"
"go.elara.ws/lure/internal/db"
"go.elara.ws/lure/internal/pager"
"go.elara.ws/lure/internal/translations"
"go.elara.ws/lure/pkg/loggerctx"
"lure.sh/lure/internal/config"
"lure.sh/lure/internal/db"
"lure.sh/lure/internal/pager"
"lure.sh/lure/internal/translations"
"lure.sh/lure/pkg/loggerctx"
)
// YesNoPrompt asks the user a yes or no question, using def as the default answer

View File

@@ -24,8 +24,8 @@ import (
"sync"
"github.com/pelletier/go-toml/v2"
"go.elara.ws/lure/internal/types"
"go.elara.ws/lure/pkg/loggerctx"
"lure.sh/lure/internal/types"
"lure.sh/lure/pkg/loggerctx"
)
var defaultConfig = &types.Config{

View File

@@ -24,7 +24,7 @@ import (
"strings"
"sync"
"go.elara.ws/lure/pkg/loggerctx"
"lure.sh/lure/pkg/loggerctx"
"golang.org/x/text/language"
)

View File

@@ -25,7 +25,7 @@ import (
"sync"
"github.com/pelletier/go-toml/v2"
"go.elara.ws/lure/pkg/loggerctx"
"lure.sh/lure/pkg/loggerctx"
)
// Paths contains various paths used by LURE

View File

@@ -28,8 +28,8 @@ import (
"sync"
"github.com/jmoiron/sqlx"
"go.elara.ws/lure/internal/config"
"go.elara.ws/lure/pkg/loggerctx"
"lure.sh/lure/internal/config"
"lure.sh/lure/pkg/loggerctx"
"golang.org/x/exp/slices"
"modernc.org/sqlite"
)

View File

@@ -24,7 +24,7 @@ import (
"testing"
"github.com/jmoiron/sqlx"
"go.elara.ws/lure/internal/db"
"lure.sh/lure/internal/db"
)
var testPkg = db.Package{

View File

@@ -36,8 +36,8 @@ import (
"github.com/PuerkitoBio/purell"
"github.com/vmihailenco/msgpack/v5"
"go.elara.ws/lure/internal/dlcache"
"go.elara.ws/lure/pkg/loggerctx"
"lure.sh/lure/internal/dlcache"
"lure.sh/lure/pkg/loggerctx"
"golang.org/x/exp/slices"
)

View File

@@ -33,7 +33,7 @@ import (
"github.com/mholt/archiver/v4"
"github.com/schollz/progressbar/v3"
"go.elara.ws/lure/internal/shutils"
"lure.sh/lure/internal/shutils"
)
// FileDownloader downloads files using HTTP

View File

@@ -26,7 +26,7 @@ import (
"os"
"path/filepath"
"go.elara.ws/lure/internal/config"
"lure.sh/lure/internal/config"
)
// BasePath returns the base path of the download cache

View File

@@ -27,8 +27,8 @@ import (
"path/filepath"
"testing"
"go.elara.ws/lure/internal/config"
"go.elara.ws/lure/internal/dlcache"
"lure.sh/lure/internal/config"
"lure.sh/lure/internal/dlcache"
)
func init() {

View File

@@ -22,9 +22,9 @@ import (
"reflect"
"strings"
"go.elara.ws/lure/internal/cpu"
"go.elara.ws/lure/internal/db"
"go.elara.ws/lure/pkg/distro"
"lure.sh/lure/internal/cpu"
"lure.sh/lure/internal/db"
"lure.sh/lure/pkg/distro"
"golang.org/x/exp/slices"
"golang.org/x/text/language"
)

View File

@@ -23,8 +23,8 @@ import (
"reflect"
"testing"
"go.elara.ws/lure/internal/overrides"
"go.elara.ws/lure/pkg/distro"
"lure.sh/lure/internal/overrides"
"lure.sh/lure/pkg/distro"
"golang.org/x/text/language"
)

View File

@@ -25,8 +25,8 @@ import (
"strings"
"github.com/mitchellh/mapstructure"
"go.elara.ws/lure/internal/overrides"
"go.elara.ws/lure/pkg/distro"
"lure.sh/lure/internal/overrides"
"lure.sh/lure/pkg/distro"
"golang.org/x/exp/slices"
"mvdan.cc/sh/v3/expand"
"mvdan.cc/sh/v3/interp"

View File

@@ -27,8 +27,8 @@ import (
"strings"
"testing"
"go.elara.ws/lure/internal/shutils/decoder"
"go.elara.ws/lure/pkg/distro"
"lure.sh/lure/internal/shutils/decoder"
"lure.sh/lure/pkg/distro"
"mvdan.cc/sh/v3/interp"
"mvdan.cc/sh/v3/syntax"
)

View File

@@ -23,9 +23,9 @@ import (
"strings"
"testing"
"go.elara.ws/lure/internal/shutils"
"go.elara.ws/lure/internal/shutils/decoder"
"go.elara.ws/lure/pkg/distro"
"lure.sh/lure/internal/shutils"
"lure.sh/lure/internal/shutils/decoder"
"lure.sh/lure/pkg/distro"
"mvdan.cc/sh/v3/interp"
"mvdan.cc/sh/v3/syntax"
)

View File

@@ -30,7 +30,7 @@ import (
"github.com/go-git/go-git/v5"
"github.com/go-git/go-git/v5/plumbing/object"
"go.elara.ws/lure/internal/shutils"
"lure.sh/lure/internal/shutils"
"golang.org/x/exp/slices"
"mvdan.cc/sh/v3/interp"
)

View File

@@ -25,7 +25,7 @@ import (
"strings"
"testing"
"go.elara.ws/lure/internal/shutils"
"lure.sh/lure/internal/shutils"
"mvdan.cc/sh/v3/interp"
"mvdan.cc/sh/v3/syntax"
)

View File

@@ -24,7 +24,7 @@ import (
"sync"
"go.elara.ws/logger"
"go.elara.ws/lure/pkg/loggerctx"
"lure.sh/lure/pkg/loggerctx"
"go.elara.ws/translate"
"golang.org/x/text/language"
)

View File

@@ -18,7 +18,7 @@
package types
import "go.elara.ws/lure/pkg/manager"
import "lure.sh/lure/pkg/manager"
type BuildOpts struct {
Script string