12 lines
347 B
JavaScript
12 lines
347 B
JavaScript
|
|
// Placeholder — flow-based control mode is not yet implemented.
|
||
|
|
// The dispatcher routes here when config.control.mode === 'flowbased',
|
||
|
|
// at which point a real implementation should land in this file.
|
||
|
|
async function run(ctx) {
|
||
|
|
ctx?.logger?.debug?.('flow-based mode not yet implemented');
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
name: 'flowbased',
|
||
|
|
run,
|
||
|
|
};
|