Skip to content

Commit

Permalink
Expose and include forgotten GuildRequester
Browse files Browse the repository at this point in the history
  • Loading branch information
Bluenix2 committed May 1, 2022
1 parent dcfdaa0 commit a9328fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion library/wumpy-rest/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "wumpy-rest"
version = "0.1.3"
version = "0.2.0"
description = "Reusable and richly typed wrapper over the Discord REST API"
readme = {file = "README.md", content-type="text/markdown"}

Expand Down
5 changes: 3 additions & 2 deletions library/wumpy-rest/wumpy/rest/endpoints/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from .channel import *
from .commands import *
from .gateway import *
from .guild import *
from .guild_template import *
from .interactions import *
from .sticker import *
Expand All @@ -10,8 +11,8 @@


class APIClient(ApplicationCommandRequester, ChannelRequester, GatewayRequester,
GuildTemplateRequester, InteractionRequester, StickerRequester, UserRequester,
WebhookRequester):
GuildRequester, GuildTemplateRequester, InteractionRequester, StickerRequester,
UserRequester, WebhookRequester):
"""Requester class with all endpoints inherited."""

__slots__ = ()

0 comments on commit a9328fb

Please sign in to comment.