mirror of
https://github.com/dokku/dokku.git
synced 2025-12-16 20:17:44 +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()
|