UNPKG

149 BJavaScriptView Raw
1module.exports = class PluginAPI {
2 constructor(sherry) {
3 this.sherry = sherry
4 }
5
6 registerCommand(fn) {
7 fn && fn(this.sherry.cli)
8 }
9}