13 lines
333 B
TypeScript
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);
|
|
}
|
|
})();
|