2026-05-01 20:47:23 +00:00
|
|
|
/**
|
2026-05-01 22:32:16 +00:00
|
|
|
* Re-exports the canonical tournament identity extractor. The implementation
|
|
|
|
|
* lives in `app/lib/tournament-identity.ts` so it can be shared by the
|
|
|
|
|
* Phase 2 backfill and by the admin event-creation flow.
|
2026-05-01 20:47:23 +00:00
|
|
|
*/
|
|
|
|
|
|
2026-05-01 22:32:16 +00:00
|
|
|
export {
|
|
|
|
|
extractTournamentIdentity,
|
|
|
|
|
type TournamentIdentity,
|
|
|
|
|
type ScoringEventIdentityInput as ScoringEventInput,
|
|
|
|
|
} from "~/lib/tournament-identity";
|