#!/usr/bin/env node

/**
 * Bud file for bin app.
 * Executing this file renders damon control scripts.
 *
 * Generated by {{generator}} on {{today}},
 * from a template provided by {{pkg.name}}.
 *
 * @see https://github.com/coz-repo/coz
 */

"use strict";

const apemanBudBin = require('apeman-bud-bin');

module.exports = apemanBudBin.daemon([
{{#each params.commands}}    '{{this}}'{{#if @last}}{{else}},
{{/if}}{{/each}}
]);

{{{read _render}}}
