feat: user session cache

This commit is contained in:
zhayujie
2022-12-10 16:46:12 +08:00
parent 5581afaa0d
commit b17f49f96b
6 changed files with 39 additions and 22 deletions

View File

@@ -27,5 +27,5 @@ class Channel(object):
"""
raise NotImplementedError
def build_reply_content(self, query):
return Bridge().fetch_reply_content(query)
def build_reply_content(self, query, context=None):
return Bridge().fetch_reply_content(query, context)