1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-19 15:34:16 +00:00
2024-03-05 10:20:36 +00:00

9 lines
224 B
JavaScript
Executable File

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