mirror of
https://github.com/619dev/PaperPhone.git
synced 2026-07-03 19:44:28 +08:00
10 lines
318 B
JavaScript
10 lines
318 B
JavaScript
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
import { GetRoleCredentialsCommand } from "./commands/GetRoleCredentialsCommand";
|
|
import { SSOClient } from "./SSOClient";
|
|
const commands = {
|
|
GetRoleCredentialsCommand,
|
|
};
|
|
export class SSO extends SSOClient {
|
|
}
|
|
createAggregatedClient(commands, SSO);
|