From af2d9b5ef548d8734139db1316c482833f1dd7f1 Mon Sep 17 00:00:00 2001 From: achingbrain Date: Thu, 5 Sep 2024 18:06:29 +0100 Subject: [PATCH] chore: update imports --- perf/runner/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perf/runner/src/index.ts b/perf/runner/src/index.ts index 7171d6fb0..99e9e2a84 100644 --- a/perf/runner/src/index.ts +++ b/perf/runner/src/index.ts @@ -1,8 +1,8 @@ import { execSync } from 'child_process'; -import { PLATFORMS, versions } from './versions.js'; +import { PLATFORMS, versions } from './versions'; import yargs from 'yargs'; import fs from 'fs'; -import type { BenchmarkResults, Benchmark, Result, IperfResults, PingResults, ResultValue } from './benchmark-result-type.js'; +import type { BenchmarkResults, Benchmark, Result, IperfResults, PingResults, ResultValue } from './benchmark-result-type'; async function main(clientPublicIP: string, serverPublicIP: string, relayPublicIP: string, testing: boolean) { const pings = runPing(clientPublicIP, serverPublicIP, relayPublicIP, testing);