summaryrefslogtreecommitdiffstats
path: root/girok/commands/calendar.py
diff options
context:
space:
mode:
Diffstat (limited to 'girok/commands/calendar.py')
-rw-r--r--girok/commands/calendar.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/girok/commands/calendar.py b/girok/commands/calendar.py
deleted file mode 100644
index 6eb4c92..0000000
--- a/girok/commands/calendar.py
+++ /dev/null
@@ -1,10 +0,0 @@
-import typer
-import girok.calendar_cli.calendar_main as calendar_main
-
-app = typer.Typer(rich_markup_mode='rich')
-
-@app.command("cal", help="[green]Open Calendar GUI[/green]", rich_help_panel=":tear-off_calendar: [bold yellow1]Calendar Commands[/bold yellow1]")
-def show_calendar():
- cal_app = calendar_main.Entry()
- cal_app.run()
-