mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 03:24:20 +00:00
🔧 Include Command in the engineer module
This commit is contained in:
parent
9b5c3e0f82
commit
d5d502188a
2 changed files with 6 additions and 0 deletions
|
@ -5,6 +5,7 @@ All names are inspired by the `Engineer Class of Team Fortress 2 <https://wiki.t
|
|||
"""
|
||||
|
||||
from .bullet import *
|
||||
from .command import *
|
||||
from .discard import *
|
||||
from .dispenser import *
|
||||
from .exc import *
|
||||
|
|
|
@ -75,3 +75,8 @@ class Command:
|
|||
teleported: t.Callable = teleporter.teleporter(is_async=True, validate_output=False)(f)
|
||||
return await teleported(_msg=_msg, **original_kwargs, **match_kwargs)
|
||||
return decorated
|
||||
|
||||
|
||||
__all__ = (
|
||||
"Command",
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue