redis-fix-3
Some checks failed
Deploy on push / deploy (push) Failing after 10s

This commit is contained in:
Untone 2024-08-08 18:14:49 +03:00
parent 531e4bf32c
commit 218bbd54da

View File

@ -61,7 +61,7 @@ class RedisService:
await self.execute("set", key, data)
async def get(self, key):
return await self.execute("set", key)
return await self.execute("get", key)
redis = RedisService()