UNPKG

hosty

Version:

A code based opinionated way to self-host and manage web apps.

15 lines 330 B
export * from './types.js'; export * as tasks from './tasks/index.js'; export function task(data) { return data; } export function host(data) { return data; } export function step(host, tasks) { return { hosts: host.name, tasks }; } export function playbook(data) { return data; } //# sourceMappingURL=index.js.map