@gootools/jayson
Version:
JSON-RPC 1.0/2.0 compliant server and client
32 lines (26 loc) • 471 B
JavaScript
;
/**
* Namespace available as require('jayson')
* @namespace Jayson
*/
const Jayson = module.exports;
/**
* @static
* @type Client
*/
Jayson.Client = Jayson.client = require('./client');
/**
* @static
* @type Server
*/
Jayson.Server = Jayson.server = require('./server');
/**
* @static
* @type Utils
*/
Jayson.Utils = Jayson.utils = require('./utils');
/**
* @static
* @type Method
*/
Jayson.Method = Jayson.method = require('./method');