????

Your IP : 3.145.125.13


Current Path : /usr/local/lib/python3.9/site-packages/agent360/plugins/
Upload File :
Current File : //usr/local/lib/python3.9/site-packages/agent360/plugins/sleeper.py

#!/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()