mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
12 lines
142 B
Python
12 lines
142 B
Python
|
|
import time
|
||
|
|
|
||
|
|
|
||
|
|
def main():
|
||
|
|
print("sleeping for 60 seconds")
|
||
|
|
while True:
|
||
|
|
time.sleep(60)
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
main()
|