Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
local
/
lib
/
python3.9
/
site-packages
/
agent360
/
plugins
/
Filename :
sleeper.py
back
Copy
#!/usr/bin/env python # -*- coding: utf-8 -*- import time import plugins class Plugin(plugins.BasePlugin): __name__ = 'sleeper' def run(self, *unused): time.sleep(60 * 60 * 24) if __name__ == '__main__': Plugin().run()