initial commit

Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
This commit is contained in:
GnomeZworc 2026-06-06 23:12:42 +02:00
commit 81baed85c7
Signed by: nicolas.boufideline
GPG key ID: 4406BBBF8845D632
16 changed files with 705 additions and 0 deletions

4
core/config.js Normal file
View file

@ -0,0 +1,4 @@
const response = await fetch('./config.json')
if (!response.ok) throw new Error('Failed to load config.json')
export const config = await response.json()