UNPKG

actionhero

Version:

The reusable, scalable, and quick node.js API server for stateless and stateful applications

16 lines (13 loc) 286 B
import { Task } from "../../../../src/index"; export class PluginTask extends Task { constructor() { super(); this.name = "pluginTask"; this.description = "pluginTask"; this.frequency = 0; this.queue = "default"; } async run(params) { return true; } }