numex-sdk/src/resources/search.js
2026-09-23 23:35:24 +00:00

12 lines
174 B
JavaScript

class Search {
constructor(client) {
this.client = client;
}
async query(params) {
return this.client.post('/search', params);
}
}
module.exports = Search;