Change import to use new repo

This commit is contained in:
David J. Allen 2023-10-31 07:55:03 -06:00
parent 28daa4a137
commit 955c9fb4bd
12 changed files with 20 additions and 20 deletions

View file

@ -1,10 +1,10 @@
package cmd
import (
magellan "github.com/bikeshack/magellan/internal"
"github.com/bikeshack/magellan/internal/api/smd"
"github.com/bikeshack/magellan/internal/db/sqlite"
"github.com/bikeshack/magellan/internal/log"
magellan "github.com/OpenChami/magellan/internal"
"github.com/OpenChami/magellan/internal/api/smd"
"github.com/OpenChami/magellan/internal/db/sqlite"
"github.com/OpenChami/magellan/internal/log"
"github.com/cznic/mathutil"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"

View file

@ -3,7 +3,7 @@ package cmd
import (
"fmt"
"github.com/bikeshack/magellan/internal/db/sqlite"
"github.com/OpenChami/magellan/internal/db/sqlite"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"

View file

@ -6,8 +6,8 @@ import (
"os"
"path"
magellan "github.com/bikeshack/magellan/internal"
"github.com/bikeshack/magellan/internal/db/sqlite"
magellan "github.com/OpenChami/magellan/internal"
"github.com/OpenChami/magellan/internal/db/sqlite"
"github.com/cznic/mathutil"
"github.com/spf13/cobra"

View file

@ -1,8 +1,8 @@
package cmd
import (
magellan "github.com/bikeshack/magellan/internal"
"github.com/bikeshack/magellan/internal/log"
magellan "github.com/OpenChami/magellan/internal"
"github.com/OpenChami/magellan/internal/log"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/bikeshack/magellan
module github.com/OpenChami/magellan
go 1.20

View file

@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"
"github.com/bikeshack/magellan/internal/util"
"github.com/OpenChami/magellan/internal/util"
"github.com/jmoiron/sqlx"
)

View file

@ -6,7 +6,7 @@ package smd
import (
"fmt"
"github.com/bikeshack/magellan/internal/util"
"github.com/OpenChami/magellan/internal/util"
// hms "github.com/alexlovelltroy/hms-smd"
)

View file

@ -12,10 +12,10 @@ import (
"sync"
"time"
"github.com/bikeshack/magellan/internal/log"
"github.com/OpenChami/magellan/internal/log"
"github.com/bikeshack/magellan/internal/api/smd"
"github.com/bikeshack/magellan/internal/util"
"github.com/OpenChami/magellan/internal/api/smd"
"github.com/OpenChami/magellan/internal/util"
"github.com/Cray-HPE/hms-xname/xnames"
bmclib "github.com/bmc-toolbox/bmclib/v2"

View file

@ -3,7 +3,7 @@ package sqlite
import (
"fmt"
magellan "github.com/bikeshack/magellan/internal"
magellan "github.com/OpenChami/magellan/internal"
"github.com/jmoiron/sqlx"
)

View file

@ -8,7 +8,7 @@ import (
"sync"
"time"
"github.com/bikeshack/magellan/internal/util"
"github.com/OpenChami/magellan/internal/util"
)
type ScannedResult struct {

View file

@ -10,8 +10,8 @@ import (
"strings"
"time"
"github.com/bikeshack/magellan/internal/log"
"github.com/bikeshack/magellan/internal/util"
"github.com/OpenChami/magellan/internal/log"
"github.com/OpenChami/magellan/internal/util"
bmclib "github.com/bmc-toolbox/bmclib/v2"
"github.com/bmc-toolbox/bmclib/v2/constants"
bmclibErrs "github.com/bmc-toolbox/bmclib/v2/errors"

View file

@ -1,7 +1,7 @@
package main
import (
"github.com/bikeshack/magellan/cmd"
"github.com/OpenChami/magellan/cmd"
)
func main() {