UNPKG

288 BJavaScriptView Raw
1/**
2 * apeman app to serve dynamic contents.
3 * @module apeman-app-dynamic
4 * @version 2.0.3
5 */
6
7"use strict";
8
9const create = require('./create'),
10 pkg = require('../package.json');
11
12let lib = create.bind(this);
13lib.create = create;
14lib.version = pkg.version;
15
16module.exports = lib;