fix: correct import path in failover_loop.go and failover_loop_test.go

Use github.com/Wei-Shaw/sub2api/internal/service instead of
sub2api/internal/service to match the module path in go.mod.
This commit is contained in:
liuxiongfeng
2026-02-10 23:35:21 +08:00
parent f9b6a20995
commit a095468850
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ import (
"log"
"time"
"sub2api/internal/service"
"github.com/Wei-Shaw/sub2api/internal/service"
)
// TempUnscheduler 用于 HandleFailoverError 中同账号重试耗尽后的临时封禁。

View File

@@ -5,7 +5,7 @@ import (
"testing"
"time"
"sub2api/internal/service"
"github.com/Wei-Shaw/sub2api/internal/service"
"github.com/stretchr/testify/require"
)