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