basically refactored the email viewer

This commit is contained in:
Tim Bendt
2025-05-14 15:11:24 -06:00
parent 5c9ad69309
commit fc57e201a2
20 changed files with 1348 additions and 575 deletions

View File

@@ -0,0 +1,17 @@
"""
Taskwarrior API module for interacting with the Taskwarrior command-line task manager.
"""
from apis.taskwarrior.client import (
create_task,
list_tasks,
complete_task,
delete_task,
)
__all__ = [
"create_task",
"list_tasks",
"complete_task",
"delete_task",
]