mirror of
https://github.com/crystelf/crystelf-admin.git
synced 2025-12-05 21:51:56 +00:00
10 lines
229 B
JavaScript
10 lines
229 B
JavaScript
import configControl from '../config/configControl.js';
|
|
import wsClient from '../../modules/ws/wsClient.js';
|
|
|
|
export const crystelfInit = {
|
|
async CSH() {
|
|
await configControl.init();
|
|
await wsClient.initialize();
|
|
},
|
|
};
|