mirror of
https://github.com/ibratabian17/OpenParty.git
synced 2026-01-15 14:22:54 -03:00
14 lines
402 B
JavaScript
14 lines
402 B
JavaScript
/**
|
|
* OpenParty - Class-based entry point
|
|
* This file serves as the entry point for the class-based version of OpenParty
|
|
*/
|
|
|
|
// Import dependencies
|
|
const settings = require('./settings.json');
|
|
const Server = require('./core/classes/Server');
|
|
|
|
console.log(`[MAIN] Starting OpenParty with class-based architecture`);
|
|
|
|
// Create and start the server
|
|
const server = new Server(settings);
|
|
server.start(); |