mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
9 lines
224 B
JavaScript
Executable File
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,
|
|
})
|
|
} |