Initial commit (v1.5.9)

This commit is contained in:
2026-09-15 21:45:47 +02:00
commit b8d3dd52ec
89 changed files with 13429 additions and 0 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);
}
})();