from aioch import Client from core.config import settings from .ckdb import CKDrive async def connect_to_ck(): CKDrive.client = Client(**settings.CK_CONFIG) async def close_ck_connection(): await CKDrive.client.disconnect()