9 lines
358 B
TypeScript
9 lines
358 B
TypeScript
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>; |