mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
10 lines
273 B
TypeScript
10 lines
273 B
TypeScript
import { defineClientEventHandler } from "~/server/internal/clients/event-handler";
|
|
|
|
export default defineClientEventHandler(async (h3) => {
|
|
const query = getQuery(h3);
|
|
|
|
const gameId = query.game;
|
|
const versionName = query.version;
|
|
const chunkId = query.chunk;
|
|
});
|