diff --git a/discorss.py b/discorss.py index b0163f0..2d3afd0 100755 --- a/discorss.py +++ b/discorss.py @@ -210,4 +210,12 @@ def main(): if __name__ == "__main__": - main() + if os.environ["INVOCATION_ID"]: + main() + else: + try: + while True: + main() + time.sleep(15 * 60) + except KeyboardInterrupt: + exit(0)