import { FlixArtAuth } from './plugins/flixart/auth.js'; import { CONFIG } from './src/utils/config.js'; (async () => { try { console.log('Testing FlixArt Auth...'); const cookie = await FlixArtAuth.getCookie(true); console.log('Cookie:', cookie); } catch (e) { console.error(e); } })();