my-bandai/test/index.ts
2026-03-21 13:07:38 +09:00

13 lines
320 B
TypeScript

import Bandai from "../src/Bandai";
async function main() {
const email = 'allin-603@outlook.com';
const password = '123456789qw';
const account = new Bandai(email, password);
const accountInfo = await account.login();
console.debug('Account', accountInfo);
}
main().then(() => {
console.debug('Done');
});