Skip to content

Commit

Permalink
Add SlackChatUpdateMessageRequest to slack package
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathansick committed Sep 30, 2024
1 parent d3989df commit b32c539
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/templatebot/storage/slack/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
"""Slack API client and models."""

from ._client import SlackWebApiClient
from ._models import SlackChatPostMessageRequest
from ._models import SlackChatPostMessageRequest, SlackChatUpdateMessageRequest

__all__ = ["SlackWebApiClient", "SlackChatPostMessageRequest"]
__all__ = [
"SlackWebApiClient",
"SlackChatPostMessageRequest",
"SlackChatUpdateMessageRequest",
]

0 comments on commit b32c539

Please sign in to comment.