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, 10 insertions, 0 deletions
diff --git a/girok/commands/calendar.py b/girok/commands/calendar.py
new file mode 100644
index 0000000..cd3fb99
--- /dev/null
+++ b/girok/commands/calendar.py
@@ -0,0 +1,10 @@
+import typer
+import girok.calendar_cli.calendar_main as calendar_main
+
+app = typer.Typer(rich_markup_mode='rich')
+
+@app.command("cal")
+def show_calendar():
+ app = calendar_main.Entry()
+ app.run()
+