4 lines
143 B
TypeScript
4 lines
143 B
TypeScript
export async function onRequestGet(context: RequestContext) {
|
|
return (await context.env.DATA.get("game_updates", { type: "json" })) ?? [];
|
|
}
|