| import sys | |
| print("sys imported") | |
| import os | |
| print("os imported") | |
| import logging | |
| print("logging imported") | |
| import json | |
| print("json imported") | |
| print("Importing config...") | |
| from mnemocore.core.config import get_config | |
| print("config imported") | |
| print("Importing redis.asyncio...") | |
| import redis.asyncio as redis | |
| print("redis.asyncio imported") | |
| print("Importing ConnectionPool...") | |
| from redis.asyncio.connection import ConnectionPool | |
| print("ConnectionPool imported") | |
| print("Importing AsyncRedisStorage...") | |
| from mnemocore.core.async_storage import AsyncRedisStorage | |
| print("AsyncRedisStorage imported") | |
| print("SUCCESS") | |