Files
memecoin-botV2/.pnpm-store/v10/files/85/118b52ca10fa7deb837a55aec050c8d0c61dc8bbccf231b785b2ed195a9e7a407726d1d7bb14c528ab1f31fe94687f0ad5fc6de7d23f03877b2db408a54853

32 lines
471 B
Plaintext

'use strict';
/**
* 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');