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 e5296c9..ebbb7ca 100644
--- a/girok/girok.py
+++ b/girok/girok.py
@@ -5,6 +5,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
from girok.config.auth_handler import AuthHandler
from girok.constants import VERSION, CommandName
@@ -15,6 +16,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.command("version")