import { api } from './client' import type { Genlocke, CreateGenlockeInput, Region } from '../types/game' export function createGenlocke(data: CreateGenlockeInput): Promise { return api.post('/genlockes', data) } export function getGamesByRegion(): Promise { return api.get('/games/by-region') }