2014-06-18 07:07:54 +08:00
|
|
|
from django.core.management.base import BaseCommand
|
2014-01-02 01:05:12 +08:00
|
|
|
|
|
|
|
|
2014-06-18 07:07:54 +08:00
|
|
|
class Command(BaseCommand):
|
2014-01-02 01:05:12 +08:00
|
|
|
|
2014-06-18 07:07:54 +08:00
|
|
|
def handle(self, **options):
|
2014-01-02 01:05:12 +08:00
|
|
|
self.stdout.write('complex_app')
|