wip: refactor

This commit is contained in:
Tim Bendt
2025-07-01 22:24:34 -04:00
parent bec09bade8
commit 5232bf3b09
66 changed files with 842 additions and 165 deletions

9
src/cli/email.py Normal file
View File

@@ -0,0 +1,9 @@
import click
from src.maildir_gtd.app import launch_email_viewer
@click.command()
def email():
"""Read emails from Maildir."""
click.echo("Opening email viewer...")
launch_email_viewer()