tomi77/ems-cli

View on GitHub
ems_cli/commands/get_streams_count.py

Summary

Maintainability
A
0 mins
Test Coverage
import os

from . import BaseCommand
from ..i18n import _


class Command(BaseCommand):
    name = os.path.splitext(os.path.basename(__file__))[0]

    description = _('number of active streams')

    quiet_fields = {
        'count': _('count'),
    }

    def fill_arguments(self):
        pass


def main():
    Command().run()