jbilcke-hf's picture
jbilcke-hf HF staff
initial commit
9a42933
raw
history blame
No virus
344 Bytes
import { getRandomPartyId } from "@/lib/getRandomPartyId"
import { Party } from "@/types"
export function newParty(party: Partial<Party> = {}): Party {
return {
partyId: getRandomPartyId(),
durationInMs: 5 * 60 * 1000,
startedAt: "", // ISO datetime
status: "waiting",
players: [],
challenges: [],
...party,
}
}