Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
kfet/sockets/price.js

12 lines
279 B
JavaScript

const utils = require("./utils");
module.exports = socket => {
return async (data) => {
try {
socket.emit("price", await utils.price(data));
} catch (e) {
socket.emit("internal error");
console.error(e);
}
}
}