This commit is contained in:
metacryst
2025-06-22 18:09:19 -05:00
parent a695368462
commit 760563167c
24 changed files with 1110 additions and 1 deletions

9
index.js Normal file
View File

@@ -0,0 +1,9 @@
import path from 'path';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const modulePath = process.env.QUILL_PATH;
const { default: Server } = await import(modulePath);
const server = new Server(__dirname, 3003);