Replace base module name from github.com/elyby/chrly to ely.by/chrly

This commit is contained in:
ErickSkrauch
2024-02-01 08:12:34 +01:00
parent 06afd17557
commit 11340289ad
29 changed files with 49 additions and 49 deletions

View File

@@ -7,11 +7,11 @@ import (
"github.com/defval/di"
"github.com/spf13/viper"
db2 "github.com/elyby/chrly/internal/db"
"github.com/elyby/chrly/internal/db/redis"
es "github.com/elyby/chrly/internal/eventsubscribers"
"github.com/elyby/chrly/internal/mojang"
"github.com/elyby/chrly/internal/profiles"
db2 "ely.by/chrly/internal/db"
"ely.by/chrly/internal/db/redis"
es "ely.by/chrly/internal/eventsubscribers"
"ely.by/chrly/internal/mojang"
"ely.by/chrly/internal/profiles"
)
// v4 had the idea that it would be possible to separate backends for storing skins and capes.

View File

@@ -4,9 +4,9 @@ import (
"github.com/defval/di"
"github.com/mono83/slf"
d "github.com/elyby/chrly/internal/dispatcher"
"github.com/elyby/chrly/internal/eventsubscribers"
"github.com/elyby/chrly/internal/http"
d "ely.by/chrly/internal/dispatcher"
"ely.by/chrly/internal/eventsubscribers"
"ely.by/chrly/internal/http"
)
var dispatcher = di.Options(

View File

@@ -10,7 +10,7 @@ import (
"github.com/gorilla/mux"
"github.com/spf13/viper"
. "github.com/elyby/chrly/internal/http"
. "ely.by/chrly/internal/http"
)
var handlers = di.Options(

View File

@@ -13,8 +13,8 @@ import (
"github.com/mono83/slf/wd"
"github.com/spf13/viper"
"github.com/elyby/chrly/internal/eventsubscribers"
"github.com/elyby/chrly/internal/version"
"ely.by/chrly/internal/eventsubscribers"
"ely.by/chrly/internal/version"
)
var logger = di.Options(

View File

@@ -8,8 +8,8 @@ import (
"github.com/defval/di"
"github.com/spf13/viper"
"github.com/elyby/chrly/internal/mojang"
"github.com/elyby/chrly/internal/profiles"
"ely.by/chrly/internal/mojang"
"ely.by/chrly/internal/profiles"
)
var mojangTextures = di.Options(

View File

@@ -3,8 +3,8 @@ package di
import (
"github.com/defval/di"
. "github.com/elyby/chrly/internal/http"
"github.com/elyby/chrly/internal/profiles"
. "ely.by/chrly/internal/http"
"ely.by/chrly/internal/profiles"
)
var profilesDi = di.Options(

View File

@@ -11,7 +11,7 @@ import (
"github.com/getsentry/raven-go"
"github.com/spf13/viper"
. "github.com/elyby/chrly/internal/http"
. "ely.by/chrly/internal/http"
)
var server = di.Options(

View File

@@ -7,8 +7,8 @@ import (
"errors"
"strings"
"github.com/elyby/chrly/internal/http"
. "github.com/elyby/chrly/internal/signer"
"ely.by/chrly/internal/http"
. "ely.by/chrly/internal/signer"
"github.com/defval/di"
"github.com/spf13/viper"