mirror of
https://github.com/Hopiu/django.git
synced 2026-05-21 05:31:50 +00:00
5 lines
129 B
Python
Executable file
5 lines
129 B
Python
Executable file
#!/usr/bin/env python3
|
|
from django.core import management
|
|
|
|
if __name__ == "__main__":
|
|
management.execute_from_command_line()
|