mirror of
https://codeberg.org/yeentown/barkey
synced 2024-12-04 22:37:26 +00:00
26 lines
533 B
TypeScript
26 lines
533 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import cluster from 'node:cluster';
|
|
import { envOption } from '@/env.js';
|
|
import { jobQueue, server } from './common.js';
|
|
|
|
/**
|
|
* Init worker process
|
|
*/
|
|
export async function workerMain() {
|
|
if (envOption.onlyServer) {
|
|
await server();
|
|
} else if (envOption.onlyQueue) {
|
|
await jobQueue();
|
|
} else {
|
|
await jobQueue();
|
|
}
|
|
|
|
if (cluster.isWorker) {
|
|
// Send a 'ready' message to parent process
|
|
process.send!('ready');
|
|
}
|
|
}
|