fix(path): Fix package name after git server migration
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Matthieu 'JP' DERASSE
2022-11-26 22:36:00 +00:00
parent 5f4e7e5be6
commit 3d878c050d
45 changed files with 70 additions and 70 deletions

View File

@ -3,7 +3,7 @@ package dependencies
import (
"os/exec"
"git.home.m-and-m.ovh/mderasse/gouick/models"
"git.dev.m-and-m.ovh/mderasse/gouick/models"
"github.com/juju/errors"
log "github.com/sirupsen/logrus"

View File

@ -12,8 +12,8 @@ import (
"github.com/blang/semver"
"github.com/juju/errors"
"git.home.m-and-m.ovh/mderasse/gouick/helpers"
"git.home.m-and-m.ovh/mderasse/gouick/models"
"git.dev.m-and-m.ovh/mderasse/gouick/helpers"
"git.dev.m-and-m.ovh/mderasse/gouick/models"
log "github.com/sirupsen/logrus"
)

View File

@ -1,6 +1,6 @@
package dependencies
import "git.home.m-and-m.ovh/mderasse/gouick/models"
import "git.dev.m-and-m.ovh/mderasse/gouick/models"
// DependencyInterface is the interface that need to be respected for a dependency.
type DependencyInterface interface {

View File

@ -10,7 +10,7 @@ import (
"runtime"
"strings"
"git.home.m-and-m.ovh/mderasse/gouick/models"
"git.dev.m-and-m.ovh/mderasse/gouick/models"
"github.com/blang/semver"
"github.com/juju/errors"