UNPKG

319 BJavaScriptView Raw
1/**
2 * Client for apeman api
3 * @module apeman-api-client
4 * @version 1.0.17
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