mirror of
https://github.com/numexai/numex-sdk.git
synced 2026-09-25 13:32:15 +00:00
12 lines
174 B
JavaScript
12 lines
174 B
JavaScript
|
|
class Search {
|
||
|
|
constructor(client) {
|
||
|
|
this.client = client;
|
||
|
|
}
|
||
|
|
|
||
|
|
async query(params) {
|
||
|
|
return this.client.post('/search', params);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = Search;
|