mirror of
https://github.com/tale/headplane.git
synced 2026-07-27 00:08:14 +00:00
12 lines
256 B
TypeScript
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();
|
|
}
|