UNPKG

@node-ts/bus-workflow

Version:

A workflow engine for orchestrating logic flows in distributed applications.

14 lines (11 loc) 239 B
import { Command } from '@node-ts/bus-messages' export class RunTask extends Command { static NAME = '@node-ts/bus-core/run-task' $name = RunTask.NAME $version = 0 constructor ( readonly value: string ) { super() } }