Files
Agora/test_flixart.ts
2026-09-15 21:56:10 +02:00

13 lines
333 B
TypeScript

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);
}
})();