This repository has been archived on 2021-03-28. You can view files and clone it, but cannot push or open issues/pull-requests.
frank/frank/module/decorators/__init__.py

14 lines
267 B
Python

from .classes import Command, RegexCommand, Daemon, Default
from .functions import command, regex_command, daemon, default
__all__ = [
"command",
"Command",
"regex_command",
"RegexCommand",
"default",
"Default",
"daemon",
"Daemon",
]