mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 08:29:56 +01:00
This functionality enables users to manage a global crontab for the Dokku user that contains all scheduled tasks across all apps. Alternative schedulers can implement cron tasks as desired.
6 lines
79 B
Python
6 lines
79 B
Python
def main(args):
|
|
print(args)
|
|
|
|
if __name__ == '__main__':
|
|
main(sys.argv)
|