This repository has been archived by the owner on Dec 18, 2021. It is now read-only.
0.5.0
- Fixed minor bugs
- Use dispatch method
Now you have to change
await <DiscordComponents or Context>.wait_for_interact("button_click")
@<DiscordComponents>.on_interact("button_click")
async def on_button_click(res): ...
to
await <Client>.wait_for("button_click")
@<Client>.event
async def on_button_click(res): ...