From 30e0f8090e8d14cfcb50f7cee2f29dee9ce81c21 Mon Sep 17 00:00:00 2001 From: comeback01 Date: Tue, 28 Oct 2025 13:23:10 +0100 Subject: [PATCH] fix(go): correct module import paths --- controller/topup_creem.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/controller/topup_creem.go b/controller/topup_creem.go index a22868b8..aab951c5 100644 --- a/controller/topup_creem.go +++ b/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"