Browse Source
fix : static not found
fix : static not found
pull/348/head
625781186
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
examples/server/wsgi/django_example/socketio_app/management/commands/runserver.py
|
|
@ -1,9 +1,10 @@ |
|
|
|
from django.core.management.commands.runserver import Command as RunCommand |
|
|
|
from django.contrib.staticfiles.management.commands import runserver |
|
|
|
|
|
|
|
from socketio_app.views import sio |
|
|
|
|
|
|
|
|
|
|
|
class Command(RunCommand): |
|
|
|
class Command(runserver.Command): |
|
|
|
help = 'Run the Socket.IO server' |
|
|
|
|
|
|
|
def handle(self, *args, **options): |
|
|
|