Merge pull request #6 from davidallendj/update-refs

Update refs
This commit is contained in:
David Allen 2024-11-03 19:54:39 -07:00 committed by GitHub
commit 19f7803f9a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 64 additions and 65 deletions

View file

@ -4,11 +4,11 @@ import (
"fmt"
"os/user"
magellan "github.com/OpenCHAMI/magellan/internal"
"github.com/OpenCHAMI/magellan/internal/cache/sqlite"
urlx "github.com/OpenCHAMI/magellan/internal/url"
"github.com/OpenCHAMI/magellan/pkg/auth"
"github.com/cznic/mathutil"
magellan "github.com/davidallendj/magellan/internal"
"github.com/davidallendj/magellan/internal/cache/sqlite"
urlx "github.com/davidallendj/magellan/internal/url"
"github.com/davidallendj/magellan/pkg/auth"
"github.com/rs/zerolog/log"
"github.com/spf13/cobra"
"github.com/spf13/viper"

View file

@ -5,8 +5,8 @@ import (
"fmt"
"log"
urlx "github.com/OpenCHAMI/magellan/internal/url"
"github.com/OpenCHAMI/magellan/pkg/crawler"
urlx "github.com/davidallendj/magellan/internal/url"
"github.com/davidallendj/magellan/pkg/crawler"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)

View file

@ -6,7 +6,7 @@ import (
"strings"
"time"
"github.com/OpenCHAMI/magellan/internal/cache/sqlite"
"github.com/davidallendj/magellan/internal/cache/sqlite"
"github.com/rs/zerolog/log"
"github.com/spf13/cobra"

View file

@ -6,8 +6,8 @@ import (
"net/http"
"os"
magellan "github.com/OpenCHAMI/magellan/internal"
"github.com/OpenCHAMI/magellan/pkg/auth"
magellan "github.com/davidallendj/magellan/internal"
"github.com/davidallendj/magellan/pkg/auth"
"github.com/lestrrat-go/jwx/jwt"
"github.com/rs/zerolog/log"
"github.com/spf13/cobra"

View file

@ -20,7 +20,7 @@ import (
"os"
"os/user"
magellan "github.com/OpenCHAMI/magellan/internal"
magellan "github.com/davidallendj/magellan/internal"
"github.com/rs/zerolog/log"
"github.com/spf13/cobra"
"github.com/spf13/viper"

View file

@ -7,12 +7,12 @@ import (
"os"
"path"
magellan "github.com/OpenCHAMI/magellan/internal"
"github.com/OpenCHAMI/magellan/internal/cache/sqlite"
magellan "github.com/davidallendj/magellan/internal"
"github.com/davidallendj/magellan/internal/cache/sqlite"
"github.com/rs/zerolog/log"
urlx "github.com/OpenCHAMI/magellan/internal/url"
"github.com/cznic/mathutil"
urlx "github.com/davidallendj/magellan/internal/url"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)

View file

@ -4,7 +4,7 @@ import (
"os"
"strings"
magellan "github.com/OpenCHAMI/magellan/internal"
magellan "github.com/davidallendj/magellan/internal"
"github.com/rs/zerolog/log"
"github.com/spf13/cobra"
"github.com/spf13/viper"

View file

@ -1,7 +1,7 @@
package cmd
import (
"github.com/OpenCHAMI/magellan/internal/version"
"github.com/davidallendj/magellan/internal/version"
"github.com/spf13/cobra"
)