chore: snapshot main sync
This commit is contained in:
15
apps/control/src/app-context.ts
Normal file
15
apps/control/src/app-context.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import type { Sql } from './db.js';
|
||||
import type { Config } from './config.js';
|
||||
import type { FleetState } from './services/fleet-state.js';
|
||||
import type { DeltaEmitter } from './services/delta-emitter.js';
|
||||
import type { ActionQueue } from './services/action-queue.js';
|
||||
import type { LogRelay } from './services/log-relay.js';
|
||||
|
||||
export interface AppContext {
|
||||
sql: Sql;
|
||||
config: Config;
|
||||
fleet: FleetState;
|
||||
emitter: DeltaEmitter;
|
||||
actionQueue: ActionQueue;
|
||||
logRelay: LogRelay;
|
||||
}
|
||||
Reference in New Issue
Block a user