UNPKG

fib-flow

Version:

A robust workflow management system for fibjs with task orchestration, state management, and distributed execution capabilities

14 lines (11 loc) 280 B
/** * Main entry point for the fib-flow library * Exports TaskManager and database adapters for distributed task scheduling * @module fib-flow */ const db = require('./db/index.js'); const TaskManager = require('./task.js'); module.exports = { TaskManager, ...db };