mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
31 lines
603 B
Python
31 lines
603 B
Python
# Module docstring
|
|
"""
|
|
The :class:`royalnet.engineer.magazine.Magazine` for the :mod:`royalnet_console` frontend.
|
|
"""
|
|
|
|
# Special imports
|
|
from __future__ import annotations
|
|
import royalnet.royaltyping as t
|
|
|
|
# External imports
|
|
import logging
|
|
import royalnet.engineer as engi
|
|
|
|
# Internal imports
|
|
from . import bullets
|
|
|
|
# Special global objects
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
# Code
|
|
class ConsoleMagazine(engi.Magazine):
|
|
_USER = bullets.ConsoleUser
|
|
_CHANNEL = bullets.ConsoleChannel
|
|
_MESSAGE = bullets.ConsoleMessage
|
|
|
|
|
|
# Objects exported by this module
|
|
__all__ = (
|
|
"ConsoleMagazine",
|
|
)
|