10 lines
194 B
Python
10 lines
194 B
Python
import click
|
|
from src.mail.app import launch_email_viewer
|
|
|
|
|
|
@click.command()
|
|
def email():
|
|
"""Read emails from Maildir."""
|
|
click.echo("Opening email viewer...")
|
|
launch_email_viewer()
|