def get_response(self, view, message):
"""
Get response running the view with await syntax if it is a
coroutine function, otherwise just run it the normal way.
"""
if inspect.iscoroutinefunction(view):
return await view(message)
return view(message)
评论列表
文章目录