Procházet zdrojové kódy

Merge pull request #2118 from comeback01/fix/go-import-paths

fix(go): Correct Go module import paths
Seefs před 2 měsíci
rodič
revize
c3ed6a689e
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. 3 3
      controller/topup_creem.go

+ 3 - 3
controller/topup_creem.go

@@ -10,9 +10,9 @@ import (
 	"io"
 	"log"
 	"net/http"
-	"one-api/common"
-	"one-api/model"
-	"one-api/setting"
+	"github.com/QuantumNous/new-api/common"
+	"github.com/QuantumNous/new-api/model"
+	"github.com/QuantumNous/new-api/setting"
 	"time"
 
 	"github.com/gin-gonic/gin"