implement ComtyClient

This commit is contained in:
SrGooglo 2023-05-17 16:50:35 +00:00
parent 8e534f6b7e
commit 8d504c1400

View File

@ -0,0 +1,9 @@
import createClient from "comty.js"
export default (params = {}) => {
return createClient({
...params,
accessKey: process.env.COMTY_ACCESS_KEY,
privateKey: process.env.COMTY_PRIVATE_KEY,
})
}