1import { assertDefined } from "../../../sharedF/assertsF/assertDefinedF.mts"2import { genContext } from "../../../serverF/genContextF.mts"4export const gameActionCtx = genContext<Record<string, any>>()6export const getReqGameActionCtx = () => {7 const store = gameActionCtx.getStore()8 const hint = 'getReqGameActionCtx'9 assertDefined(store, {hint})10 return store11}