8 lines
233 B
Python
8 lines
233 B
Python
import sys
|
|
|
|
if __name__ == '__main__':
|
|
# insert here whatever commands you use to run daphne
|
|
sys.argv = ['daphne', 'TWB.asgi:application']
|
|
from daphne.cli import CommandLineInterface
|
|
|
|
CommandLineInterface.entrypoint() |