mirror of
https://github.com/djhackersdev/minime.git
synced 2026-04-25 16:20:19 -05:00
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.
14 lines
362 B
TypeScript
14 lines
362 B
TypeScript
import { Repositories } from "../repo";
|
|
import { GetGameChargeRequest } from "../request/getGameCharge";
|
|
import { GetGameChargeResponse } from "../response/getGameCharge";
|
|
|
|
export default async function getGameCharge(
|
|
rep: Repositories,
|
|
req: GetGameChargeRequest
|
|
): Promise<GetGameChargeResponse> {
|
|
return {
|
|
length: "0",
|
|
gameChargeList: [],
|
|
};
|
|
}
|