토너먼트 준비

This commit is contained in:
2026-01-23 16:45:36 +00:00
parent 835886c7a9
commit 2d87cf881e
19 changed files with 744 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
export interface TournamentKeys {
stateKey: string;
participantsKey: string;
matchesKey: string;
}
export const buildTournamentKeys = (profileName: string): TournamentKeys => ({
stateKey: `sammo:${profileName}:tournament:state`,
participantsKey: `sammo:${profileName}:tournament:participants`,
matchesKey: `sammo:${profileName}:tournament:matches`,
});