gitlab feature start

This commit is contained in:
Tim Bendt
2025-11-05 08:56:31 -05:00
parent c46d53b261
commit 73079f743a
11 changed files with 779 additions and 4 deletions

View File

@@ -1,9 +1,12 @@
import click
import subprocess
import os
@click.command()
def drive():
"""View OneDrive files."""
click.echo("Launching OneDrive viewer...")
subprocess.run(["python3", "src/drive_view_tui.py"])
# Get the directory containing this file, then go up to project root
current_dir = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))
subprocess.run(["python3", "drive_view_tui.py"], cwd=current_dir)