Format runtime refactor modules

This commit is contained in:
ejclaw
2026-04-07 23:46:36 +09:00
parent 2cea7ed94a
commit 6ea833c18a
8 changed files with 48 additions and 31 deletions

View File

@@ -1,7 +1,4 @@
import {
getPairedTurnOutputs,
getRecentChatMessages,
} from './db.js';
import { getPairedTurnOutputs, getRecentChatMessages } from './db.js';
import { logger } from './logger.js';
import {
buildArbiterPromptForTask,
@@ -45,7 +42,10 @@ type ExecuteTurnFn = (args: {
visiblePhase: unknown;
}>;
type RoleToChannelMap = Record<'owner' | 'reviewer' | 'arbiter', Channel | null>;
type RoleToChannelMap = Record<
'owner' | 'reviewer' | 'arbiter',
Channel | null
>;
export async function runPendingPairedTurnIfNeeded(args: {
chatJid: string;