Added experimental cache support
All checks were successful
Analysis / SonarCloud (push) Successful in 51s

This commit is contained in:
2025-02-16 16:45:22 +01:00
parent e9abed27f8
commit 554b522400
10 changed files with 297 additions and 0 deletions

3
src/libbot/cache/classes/__init__.py vendored Normal file
View File

@@ -0,0 +1,3 @@
from .cache import Cache
from .cache_memcached import CacheMemcached
from .cache_redis import CacheRedis