This commit is contained in:
Athena Funderburg
2026-05-25 07:05:17 +00:00
commit 4b463a3432
682 changed files with 47796 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import asyncio, settings
from insclient.cmds import maintenance
async def main(minutes: str):
try:
resp = await maintenance(minutes, b'AzuL-SERV', settings.INS_LINK_PASSWORD)
print("Operation successful!")
except Exception as e:
print("Operation failed:", e)
if __name__ == '__main__':
import sys
_, minutes = sys.argv
asyncio.run(main(minutes))