add pending

This commit is contained in:
Dev PC
2025-08-03 17:50:44 +03:00
parent c38929fbb4
commit 2c88ae6e85
4 changed files with 18 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
import asyncio
import call_handler
callhandler = call_handler.CallHandler()
async def mailn():
await callhandler.check_pending()
return
if __name__ == "__main__":
asyncio.run(mailn())