UNPKG

wx.js

Version:

Wechat API

13 lines (10 loc) 229 B
'use strict'; class ServiceBase { constructor(client) { this.client = client; } request(method, url, options = {}) { return this.client.request(method, url, options); } } exports = module.exports = ServiceBase;