Просмотр исходного кода

chore: format code (dev-632cb85)

github-actions[bot] 3 дней назад
Родитель
Сommit
bef7fc4370
1 измененных файлов с 5 добавлено и 1 удалено
  1. 5 1
      src/lib/provider-endpoints/probe.ts

+ 5 - 1
src/lib/provider-endpoints/probe.ts

@@ -1,7 +1,11 @@
 import "server-only";
 
 import net from "node:net";
-import { getEndpointCircuitStateSync, recordEndpointFailure, resetEndpointCircuit } from "@/lib/endpoint-circuit-breaker";
+import {
+  getEndpointCircuitStateSync,
+  recordEndpointFailure,
+  resetEndpointCircuit,
+} from "@/lib/endpoint-circuit-breaker";
 import { logger } from "@/lib/logger";
 import { findProviderEndpointById, recordProviderEndpointProbeResult } from "@/repository";
 import type { ProviderEndpoint, ProviderEndpointProbeSource } from "@/types/provider";