@hosoft/restful-api-framework
Version:
Base framework of the headless cms HoServer provided by http://helloreact.cn
20 lines (18 loc) • 476 B
JavaScript
/**
* HoServer API Server Ver 2.0
* Copyright http://hos.helloreact.cn
*
* create: 2018/11/15
**/
const BaseHelper = require('./helpers/base-helper')
const CacheManager = require('./memory-cache/cache-manager')
const Constants = require('./constants/constants')
const ErrorCodes = require('./constants/error-codes')
const PluginManager = require('./plugin-manager')
module.exports = {
BaseHelper,
Constants,
ErrorCodes,
CacheManager,
PluginManager
}