refactor: moved internal functions to pkg and updated refs

This commit is contained in:
David Allen 2025-02-20 17:09:21 -07:00
parent b77f9a8c9c
commit ebcd3ff917
Signed by: towk
GPG key ID: 793B2924A49B3A3F
8 changed files with 5 additions and 5 deletions

View file

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

View file

@ -7,8 +7,8 @@ import (
"os"
"path"
magellan "github.com/OpenCHAMI/magellan/internal"
"github.com/OpenCHAMI/magellan/internal/cache/sqlite"
magellan "github.com/OpenCHAMI/magellan/pkg"
"github.com/rs/zerolog/log"
urlx "github.com/OpenCHAMI/magellan/internal/url"

View file

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