UNPKG

369 BJavaScriptView Raw
1/**
2 * Daemon manager for apeman.
3 * @module apeman-d
4 * @version 1.1.5
5 */
6
7"use strict";
8
9const apemanD = require('./apeman_d');
10
11let lib = apemanD.bind(this);
12
13lib.apemanD = apemanD;
14lib.done = require('./done');
15lib.start = apemanD.start;
16lib.stop = apemanD.stop;
17lib.show = apemanD.show;
18lib.delete = apemanD.delete;
19lib.kill = apemanD.kill;
20module.exports = lib;