summaryrefslogtreecommitdiffstats
path: root/girok/girok.py
diff options
context:
space:
mode:
Diffstat (limited to 'girok/girok.py')
-rw-r--r--girok/girok.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/girok/girok.py b/girok/girok.py
index ebbb7ca..c72500b 100644
--- a/girok/girok.py
+++ b/girok/girok.py
@@ -6,6 +6,7 @@ from rich import print
import girok.commands.auth.command as auth_command
import girok.commands.category.command as category_command
import girok.commands.task.command as task_command
+import girok.commands.calendar.command as calendar_command
from girok.config.auth_handler import AuthHandler
from girok.constants import VERSION, CommandName
@@ -17,6 +18,7 @@ app = typer.Typer(
app.registered_commands.extend(auth_command.app.registered_commands)
app.registered_commands.extend(category_command.app.registered_commands)
app.registered_commands.extend(task_command.app.registered_commands)
+app.registered_commands.extend(calendar_command.app.registered_commands)
@app.command("version")