mirror of
https://github.com/fergalmoran/dss.api.git
synced 2025-12-22 09:18:13 +00:00
9 lines
233 B
Python
9 lines
233 B
Python
from django.core.management.base import NoArgsCommand
|
|
|
|
|
|
class Command(NoArgsCommand):
|
|
def handle_noargs(self, **options):
|
|
try:
|
|
pass
|
|
except Exception as ex:
|
|
print("Debug exception: %s" % ex) |