Source code for radioco.apps.radioco.management.commands.create_example_data

from django.core.management.base import BaseCommand

from radioco.apps.radioco.utils import create_example_data


[docs]class Command(BaseCommand):
[docs] def handle(self, *args, **options): create_example_data()