style: fix gofmt formatting in gateway_service.go

Remove extra blank line that caused golangci-lint gofmt check to fail.
This commit is contained in:
erio
2026-02-07 14:51:20 +08:00
parent 14c6c9321a
commit b4f6c4f9d5

View File

@@ -2616,7 +2616,6 @@ func (s *GatewayService) isModelSupportedByAccount(account *Account, requestedMo
return account.IsModelSupported(requestedModel) return account.IsModelSupported(requestedModel)
} }
// GetAccessToken 获取账号凭证 // GetAccessToken 获取账号凭证
func (s *GatewayService) GetAccessToken(ctx context.Context, account *Account) (string, string, error) { func (s *GatewayService) GetAccessToken(ctx context.Context, account *Account) (string, string, error) {
switch account.Type { switch account.Type {