Use proper package namespace

This commit is contained in:
Ben Sarmiento
2023-11-29 23:10:55 +01:00
parent ced99b9667
commit f61ffe82f3
16 changed files with 35 additions and 35 deletions

View File

@@ -5,7 +5,7 @@ import (
"fmt"
"os/exec"
"github.com/debridmediamanager.com/zurg/internal/config"
"github.com/debridmediamanager/zurg/internal/config"
"go.uber.org/zap"
)

View File

@@ -12,10 +12,10 @@ import (
"sync"
"time"
"github.com/debridmediamanager.com/zurg/internal/config"
"github.com/debridmediamanager.com/zurg/pkg/dav"
"github.com/debridmediamanager.com/zurg/pkg/realdebrid"
"github.com/debridmediamanager.com/zurg/pkg/utils"
"github.com/debridmediamanager/zurg/internal/config"
"github.com/debridmediamanager/zurg/pkg/dav"
"github.com/debridmediamanager/zurg/pkg/realdebrid"
"github.com/debridmediamanager/zurg/pkg/utils"
"github.com/dgraph-io/ristretto"
cmap "github.com/orcaman/concurrent-map/v2"
"github.com/panjf2000/ants/v2"

View File

@@ -1,7 +1,7 @@
package torrent
import (
"github.com/debridmediamanager.com/zurg/pkg/realdebrid"
"github.com/debridmediamanager/zurg/pkg/realdebrid"
cmap "github.com/orcaman/concurrent-map/v2"
)