소스 검색

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

fix(go): Correct Go module import paths
Seefs 4 달 전
부모
커밋
c3ed6a689e
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  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"