QwenAI / scripts /addAccount.js
imseldrith's picture
Initial upload from Google Colab
9de864e verified
raw
history blame contribute delete
252 Bytes
// Скрипт interactively добавляет новые аккаунты.
// Запуск: node scripts/addAccount.js
import { interactiveAccountMenu } from '../src/utils/accountSetup.js';
(async () => {
await interactiveAccountMenu();
})();