{{!
    Template for usage.js
}}/**
 * This is example Apemanfile to use "{{pkg.name}}".
{{#each see}} * @see {{{this}}}
{{/each}} */

"use strict";

module.exports = {
    $pkg: {/*...*/},
    $apps: {
        // Define app.
        "my-awesome-app": {
{{#with signature.example}}
            "/api/somepoint": [
                require("{{../pkg.name}}")({{#each args}}{{{this}}}, {{/each}}{
{{#each options}}                     "{{{@key}}}": {{{this}}}{{#if @last}}{{else}},
{{/if}}{{/each}}
                })
{{/with}}
            ]
        }
    }
};