1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 11:34:18 +00:00

Export the PDAImplementation

This commit is contained in:
Steffo 2022-04-18 21:17:11 +02:00
parent 96348ac0d6
commit 55ff0eda9b
Signed by: steffo
GPG key ID: 6965406171929D01
3 changed files with 3 additions and 1 deletions

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "royalnet-discordpy" name = "royalnet-discordpy"
version = "6.6.1" version = "6.6.2"
description = "A Discord.py-based frontend for the royalnet.engineer module." description = "A Discord.py-based frontend for the royalnet.engineer module."
authors = ["Stefano Pigozzi <me@steffo.eu>"] authors = ["Stefano Pigozzi <me@steffo.eu>"]
license = "AGPL-3.0-or-later" license = "AGPL-3.0-or-later"

View file

@ -2,3 +2,4 @@
A :mod:`telethon` -based implementation of the PDA class of the :mod:`royalnet.engineer` module. A :mod:`telethon` -based implementation of the PDA class of the :mod:`royalnet.engineer` module.
""" """
from .pda import *

View file

@ -115,5 +115,6 @@ class DiscordpyPDAImplementation(engi.ConversationListImplementation):
__all__ = ( __all__ = (
"DiscordpyPDAMode",
"DiscordpyPDAImplementation", "DiscordpyPDAImplementation",
) )