4 lines
119 B
Python
4 lines
119 B
Python
async def application(scope, receive, send):
|
|
if scope['type'] != 'http':
|
|
raise Exception('Exception blah')
|