Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
faust-streaming / faust / cli / faust.py
Size: Mime:
"""Program ``faust`` (umbrella command)."""

# Note: The command options above are defined in .cli.base.builtin_options
from .agents import agents
from .base import call_command, cli
from .clean_versions import clean_versions
from .completion import completion
from .livecheck import livecheck
from .model import model
from .models import models
from .reset import reset
from .send import send
from .tables import tables
from .worker import worker

__all__ = [
    "agents",
    "call_command",
    "clean_versions",
    "cli",
    "completion",
    "livecheck",
    "model",
    "models",
    "reset",
    "send",
    "tables",
    "worker",
]