6 lines
187 B
TypeScript
6 lines
187 B
TypeScript
import { jsonResponse } from "../common.js";
|
|
|
|
export async function onRequestGet(context: RequestContext) {
|
|
return jsonResponse((await context.env.DATA.get("game_updates")) ?? "[]");
|
|
}
|