Files
2026-04-26 20:38:45 -04:00

12 lines
256 B
TypeScript

import { getBootstrapClient, HS_VERSIONS, stopAllVersions } from "./env";
export async function setup() {
for (const version of HS_VERSIONS) {
await getBootstrapClient(version);
}
}
export async function teardown() {
await stopAllVersions();
}