summaryrefslogtreecommitdiffstats
path: root/girok/commands/calendar/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'girok/commands/calendar/command.py')
-rw-r--r--girok/commands/calendar/command.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/girok/commands/calendar/command.py b/girok/commands/calendar/command.py
new file mode 100644
index 0000000..8b8e901
--- /dev/null
+++ b/girok/commands/calendar/command.py
@@ -0,0 +1,14 @@
+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() \ No newline at end of file