UNPKG

321 Btext/x-handlebars-templateView Raw
1/**
2 * {{pkg.description}}
3 * @module {{pkg.name}}
4 * @version {{pkg.version}}
5 */
6
7'use strict'
8
9const create = require('./create')
10const load = require('./load')
11const Client = require('./apeman_api_client')
12
13let lib = create.bind(this)
14
15Object.assign(lib, Client, {
16 create,
17 load,
18 Client
19})
20
21module.exports = lib
22
\No newline at end of file