v1.5.9 (Actuel)

This commit is contained in:
2026-09-15 21:56:10 +02:00
parent c21cd3ab5e
commit bff992aa4a
56 changed files with 3404 additions and 327 deletions
+12
View File
@@ -0,0 +1,12 @@
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);
}
})();