UNPKG

@contentacms/contentajs

Version:

A nodejs server that proxies to Contenta CMS and holds custom code.

15 lines (12 loc) 263 B
"use strict"; const ContentaJsonRpc = require('./ContentaJsonRpc'); module.exports = host => { const jsonrpc = new ContentaJsonRpc(host); return { init() { return jsonrpc.init().then(() => jsonrpc); }, jsonrpc, ContentaJsonRpc }; };