diff --git a/Services/Interfaces/web_interface/api/__init__.py b/Services/Interfaces/web_interface/api/__init__.py index a12375ae4..c922b9d34 100644 --- a/Services/Interfaces/web_interface/api/__init__.py +++ b/Services/Interfaces/web_interface/api/__init__.py @@ -24,6 +24,11 @@ import tentacles.Services.Interfaces.web_interface.api.bots import tentacles.Services.Interfaces.web_interface.api.webhook +from tentacles.Services.Interfaces.web_interface.api.webhook import ( + has_webhook, + register_webhook +) + def register(): blueprint = flask.Blueprint('api', __name__, url_prefix='/api', template_folder="") @@ -41,5 +46,7 @@ def register(): __all__ = [ + "has_webhook", + "register_webhook", "register", ]