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

🔧 Include Command in the engineer module

This commit is contained in:
Steffo 2020-12-27 11:35:06 +01:00
parent 9b5c3e0f82
commit d5d502188a
2 changed files with 6 additions and 0 deletions

View file

@ -5,6 +5,7 @@ All names are inspired by the `Engineer Class of Team Fortress 2 <https://wiki.t
""" """
from .bullet import * from .bullet import *
from .command import *
from .discard import * from .discard import *
from .dispenser import * from .dispenser import *
from .exc import * from .exc import *

View file

@ -75,3 +75,8 @@ class Command:
teleported: t.Callable = teleporter.teleporter(is_async=True, validate_output=False)(f) teleported: t.Callable = teleporter.teleporter(is_async=True, validate_output=False)(f)
return await teleported(_msg=_msg, **original_kwargs, **match_kwargs) return await teleported(_msg=_msg, **original_kwargs, **match_kwargs)
return decorated return decorated
__all__ = (
"Command",
)