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

Implement magazine

This commit is contained in:
Steffo 2021-01-05 17:21:14 +01:00
parent c026c282f8
commit 38c877950d

View file

@ -0,0 +1,35 @@
# Module docstring
"""
.. todo:: Document magazines.
"""
# Special imports
from __future__ import annotations
import royalnet.royaltyping as t
# External imports
import logging
# Internal imports
from . import bullet
# Special global objects
log = logging.getLogger(__name__)
# Code
class Magazine:
"""
A reference to all types of bullets to be used when instancing bullets from a bullet.
"""
BULLET = bullet.Bullet
USER = bullet.User
MESSAGE = bullet.Message
CHANNEL = bullet.Channel
# Objects exported by this module
__all__ = (
"Magazine",
)