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:
parent
b6bf69590c
commit
c5d1b96f6a
2 changed files with 7 additions and 1 deletions
1
royalnet/engineer/blueprints/__init__.py
Normal file
1
royalnet/engineer/blueprints/__init__.py
Normal file
|
@ -0,0 +1 @@
|
||||||
|
from .message import *
|
|
@ -4,7 +4,7 @@ import abc
|
||||||
import datetime
|
import datetime
|
||||||
import functools
|
import functools
|
||||||
|
|
||||||
from . import exc
|
from .. import exc
|
||||||
|
|
||||||
|
|
||||||
class Message(metaclass=abc.ABCMeta):
|
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.
|
:raises .exc.NotAvailableError: If this message is not a reply to any other message.
|
||||||
"""
|
"""
|
||||||
raise exc.NeverAvailableError()
|
raise exc.NeverAvailableError()
|
||||||
|
|
||||||
|
|
||||||
|
__all__ = (
|
||||||
|
"Message",
|
||||||
|
)
|
Loading…
Reference in a new issue