archive
/
todoist-github
Archived
1
Fork 0
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
Executable File

#!/usr/bin/env python3
from .tasks import ALL_TASKS
def main():
for task in ALL_TASKS:
print("Executing", task.__name__)
task()
if __name__ == "__main__":
main()