Skip to content

Commit a9328fb

Browse files
committed
Expose and include forgotten GuildRequester
1 parent dcfdaa0 commit a9328fb

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

library/wumpy-rest/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "wumpy-rest"
3-
version = "0.1.3"
3+
version = "0.2.0"
44
description = "Reusable and richly typed wrapper over the Discord REST API"
55
readme = {file = "README.md", content-type="text/markdown"}
66

library/wumpy-rest/wumpy/rest/endpoints/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from .channel import *
33
from .commands import *
44
from .gateway import *
5+
from .guild import *
56
from .guild_template import *
67
from .interactions import *
78
from .sticker import *
@@ -10,8 +11,8 @@
1011

1112

1213
class APIClient(ApplicationCommandRequester, ChannelRequester, GatewayRequester,
13-
GuildTemplateRequester, InteractionRequester, StickerRequester, UserRequester,
14-
WebhookRequester):
14+
GuildRequester, GuildTemplateRequester, InteractionRequester, StickerRequester,
15+
UserRequester, WebhookRequester):
1516
"""Requester class with all endpoints inherited."""
1617

1718
__slots__ = ()

0 commit comments

Comments
 (0)