mirror of
https://github.com/Hopiu/django.git
synced 2026-03-19 07:20:31 +00:00
6 lines
155 B
Python
6 lines
155 B
Python
from django.core.management.base import BaseCommand
|
|
|
|
|
|
class Command(BaseCommand):
|
|
def handle(self, **options):
|
|
self.stdout.write("simple_app")
|