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

🔧 Make blueprint a package

This commit is contained in:
Steffo 2020-12-11 10:02:40 +01:00
parent b6bf69590c
commit c5d1b96f6a
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1 @@
from .message import *

View file

@ -4,7 +4,7 @@ import abc
import datetime
import functools
from . import exc
from .. import exc
class Message(metaclass=abc.ABCMeta):
@ -85,3 +85,8 @@ class Message(metaclass=abc.ABCMeta):
:raises .exc.NotAvailableError: If this message is not a reply to any other message.
"""
raise exc.NeverAvailableError()
__all__ = (
"Message",
)