@duque.edits/sdk
v1.5.0
Published
An SDK that facilitates interaction with my API.
Downloads
1,138
Readme
A SDK for my API
You can use this package as base for your own sdk
Version: 1.4.0
Features
- Rest Client.
- Guild Manager.
- Crate matches between players.
Example
Create Match
const { REST } = require("@duque.edits/sdk");
const client = new REST({
clientKey: "**************",
authKey: "**************",
guildId: "**************",
});
const guild = client.guilds.cache.get("**************");
const match = guild.matches.create({
type: "2v2",
creatorId: 1234,
});