rootAPI to gatewayAPI

This commit is contained in:
2023-08-20 06:07:06 +00:00
parent 56a9c5bc45
commit f4640abe17
14 changed files with 21 additions and 21 deletions
+9
View File
@@ -0,0 +1,9 @@
import type { structure } from "../apiStructure/sammoGatewayAPI.js";
import type { APINamespaceType } from "./defs.js";
import { GetGameLoginToken } from "./GatewayAPI/GetGameLoginToken.js";
import { Login } from "./GatewayAPI/Login/index.js";
export const sammoGatewayAPI = {
Login,
GetGameLoginToken
} satisfies APINamespaceType<typeof structure>;