From 6dd52591a83fbf8acd16085dd3b2ea4ba7715d08 Mon Sep 17 00:00:00 2001 From: adam Date: Wed, 4 Sep 2024 15:47:15 -0700 Subject: [PATCH] Add query hook --- src/ghostwriter/hooks/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ghostwriter/hooks/__init__.py b/src/ghostwriter/hooks/__init__.py index 07262a4..6abbea1 100644 --- a/src/ghostwriter/hooks/__init__.py +++ b/src/ghostwriter/hooks/__init__.py @@ -1,4 +1,5 @@ from .ensure_lab import ensure_running_lab +from .portal_query import portal_query from .vacuous import vacuous_hook -__all__ = ["ensure_running_lab", "vacuous_hook"] +__all__ = ["ensure_running_lab", "portal_query", "vacuous_hook"]