mirror of https://github.com/zulip/zulip.git
12 lines
311 B
Python
12 lines
311 B
Python
from typing import Any
|
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
from zerver.lib.management import check_config
|
|
|
|
class Command(BaseCommand):
|
|
help = """Checks your Zulip Voyager Django configuration for issues."""
|
|
|
|
def handle(self, *args: Any, **options: Any) -> None:
|
|
check_config()
|