import type { Command } from "./Command"; export interface CommandBus { execute(command: Command): Promise; }