hestia/src/main.js

5 lines
252 B
JavaScript
Raw Normal View History

2024-08-15 10:53:26 +00:00
// Hestia Control Panel Back-End
import { State, Communicator } from './custom_modules/HestiaClasses';
import config from './custom_modules/config.json' assert { type: 'json' };
const psState = new State(config);
const comm = new Communicator(psState);