1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
todoist-github/todoist_github/cli.py

14 lines
191 B
Python
Raw Normal View History

2020-01-08 20:17:53 +00:00
#!/usr/bin/env python3
from .tasks import ALL_TASKS
2020-01-08 21:05:58 +00:00
def main():
for task in ALL_TASKS:
print("Executing", task.__name__)
2020-01-09 18:25:38 +00:00
task()
2020-01-08 21:05:58 +00:00
if __name__ == "__main__":
main()