🌳
pt0/gamesapp/serverF/gameState/gameActionCtxF.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 store