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

Export the PDAImplementation

This commit is contained in:
Steffo 2022-04-18 21:17:58 +02:00
parent f165eed450
commit eba71bad71
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-telethon" name = "royalnet-telethon"
version = "6.6.0" version = "6.6.2"
description = "A Telethon-based frontend for the royalnet.engineer module." description = "A Telethon-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

@ -154,5 +154,6 @@ class TelethonPDAImplementation(engi.ConversationListImplementation):
__all__ = ( __all__ = (
"TelethonPDAMode",
"TelethonPDAImplementation", "TelethonPDAImplementation",
) )