Includes current frontend and backend work in progress and removes generated artifacts from tracking to keep the repository clean for дальнейшая разработка. Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
368 B
TypeScript
8 lines
368 B
TypeScript
import { buildSignalSnapshotFromCollectors } from "./signals-from-collectors.js"
|
|
import type { SignalSnapshot } from "./types.js"
|
|
|
|
/** Legacy-совместимость: единый источник сигналов — collector snapshots из scheduler_runs. */
|
|
export function buildSignalSnapshot(): SignalSnapshot {
|
|
return buildSignalSnapshotFromCollectors()
|
|
}
|