From d04cd5f8316fba868a29a66a9832a356e1f8c590 Mon Sep 17 00:00:00 2001 From: Daniel Dolezal Date: Fri, 24 Oct 2025 08:32:39 +0200 Subject: [PATCH] add empty file access quarys --- my_modules/EdgeDB.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/my_modules/EdgeDB.py b/my_modules/EdgeDB.py index 1954294..990e2ed 100644 --- a/my_modules/EdgeDB.py +++ b/my_modules/EdgeDB.py @@ -54,7 +54,7 @@ class EdgeDB: await asyncio.sleep(0.5) retry_count += 1 - # App Quary Functions + # File Quary Functions async def get_file(self, file_id:str): data = await self.run_query_with_reconnection( self.client.query_single, @@ -200,3 +200,16 @@ class EdgeDB: """, ids=remove_file_ids ) + + async def get_file_informations(self, file_id:str): + pass + + # File Access Quary Functions + async def add_file_access(self): + pass + + async def get_all_file_access(self): + pass + + async def get_file_access(self, file_id:str): + pass