*Use shorthand function
This commit is contained in:
parent
187e2f8fdf
commit
e7aedc9950
25
src/index.ts
25
src/index.ts
|
@ -6,23 +6,22 @@ const plugin: Plugin = {
|
||||||
async plugin(api: PluginAPI): Promise<void> {
|
async plugin(api: PluginAPI): Promise<void> {
|
||||||
api.registerMethod("ping", {
|
api.registerMethod("ping", {
|
||||||
cacheable: false,
|
cacheable: false,
|
||||||
handler: async (): Promise<RPCResponse | null> => {
|
async handler(): Promise<RPCResponse | null> {
|
||||||
return {
|
return {
|
||||||
data: "pong"
|
data: "pong",
|
||||||
}
|
};
|
||||||
}
|
},
|
||||||
})
|
});
|
||||||
|
|
||||||
api.registerMethod("get_methods", {
|
api.registerMethod("get_methods", {
|
||||||
cacheable: false,
|
cacheable: false,
|
||||||
handler: async (): Promise<RPCResponse | null> => {
|
async handler(): Promise<RPCResponse | null> {
|
||||||
return {
|
return {
|
||||||
data: api.getMethods()
|
data: api.getMethods(),
|
||||||
}
|
};
|
||||||
}
|
},
|
||||||
})
|
});
|
||||||
}
|
},
|
||||||
|
};
|
||||||
}
|
|
||||||
|
|
||||||
export default plugin;
|
export default plugin;
|
||||||
|
|
Reference in New Issue