Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 232 Bytes

README.md

File metadata and controls

17 lines (10 loc) · 232 Bytes

Quick Example

import discordsdk


client = discordsdk.Client()

# make a basic slash command

@client.slash_command(guild_ids=[00000000])
async def hello(ctx):
    await ctx.send("hello world!")


client.run("TOKEN")