Florian Metzger-Noel
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
examples/server/sanic/app.py
|
@ -4,7 +4,7 @@ from sanic.response import html |
|
|
import socketio |
|
|
import socketio |
|
|
|
|
|
|
|
|
sio = socketio.AsyncServer(async_mode='sanic') |
|
|
sio = socketio.AsyncServer(async_mode='sanic') |
|
|
app = Sanic() |
|
|
app = Sanic(name='sanic_application') |
|
|
sio.attach(app) |
|
|
sio.attach(app) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|