8 lines
180 B
Python
8 lines
180 B
Python
from bottle import request
|
|
|
|
def websocket(callback):
|
|
def wrapper(*args, **kwargs):
|
|
callback(request.environ.get('wsgi.websocket'), *args, **kwargs)
|
|
|
|
return wrapper
|