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/drive.py Normal file
View File

@@ -0,0 +1,9 @@
import click
import subprocess
@click.command()
def drive():
"""View OneDrive files."""
click.echo("Launching OneDrive viewer...")
subprocess.run(["python3", "src/drive_view_tui.py"])