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/__init__.py

25 lines
327 B
Python

from .module import Module
from .decorators import (
command,
Command,
default,
Default,
daemon,
Daemon,
regex_command,
RegexCommand,
)
__all__ = [
"Module",
"command",
"Command",
"default",
"Default",
"daemon",
"Daemon",
"regex_command",
"RegexCommand",
]