Files
ejs/tests/utils.ts
2025-08-26 20:30:47 +02:00

6 lines
158 B
TypeScript

import { type Variant } from "./tests.ts";
export function getCachePath(player: string, variant: Variant) {
return `tests/players/${player}-${variant}`;
}