No cleaner development history than this exists. It's difficult to methodically design something when you don't yet know what it is you're designing.
15 lines
382 B
TypeScript
15 lines
382 B
TypeScript
import { Repositories } from "../repo";
|
|
import { GetGameIdlistRequest } from "../request/getGameIdlist";
|
|
import { GetGameIdlistResponse } from "../response/getGameIdlist";
|
|
|
|
export default async function getGameIdlist(
|
|
rep: Repositories,
|
|
req: GetGameIdlistRequest
|
|
): Promise<GetGameIdlistResponse> {
|
|
return {
|
|
type: req.type,
|
|
length: "0",
|
|
gameIdlistList: [],
|
|
};
|
|
}
|