This repository was archived by the owner on Oct 4, 2019. It is now read-only.
This repository was archived by the owner on Oct 4, 2019. It is now read-only.
add a way to import customConfig's. #52
Open
Description
Have an import method, like client.customConfig.import(arg)
arg can be an array or map, with the config intern
for example:
var data = {guildId: "1234", data: {prefix = ["!"]}}
client.customConfig.import(data)
or
var data = new Map()
map.set("1234", {test: true})
client.customConfig.import(data)