fix: 移除 goimports local-prefixes 配置 - 解决导入顺序问题

This commit is contained in:
2026-04-20 10:18:00 +08:00
parent 422e6b4147
commit d54fe367ab
4 changed files with 17 additions and 17 deletions
+11 -11
View File
@@ -1,25 +1,25 @@
package service
import (
"context"
"encoding/base64"
"encoding/json"
"fmt"
"golang.org/x/net/proxy"
"net"
"next-terminal/server/common"
"next-terminal/server/common/maps"
"next-terminal/server/common/nt"
"strconv"
"strings"
"time"
"next-terminal/server/common"
"next-terminal/server/config"
"next-terminal/server/env"
"next-terminal/server/model"
"next-terminal/server/repository"
"next-terminal/server/utils"
"context"
"encoding/base64"
"encoding/json"
"fmt"
"net"
"strconv"
"strings"
"time"
"golang.org/x/net/proxy"
"gorm.io/gorm"
)