13 lines
320 B
TypeScript
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');
|
|
}); |