You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/bazarr/api/webhooks/__init__.py

13 lines
239 B

# coding=utf-8
from flask import Blueprint
from flask_restful import Api
from .plex import WebHooksPlex
api_bp_webhooks = Blueprint('api_webhooks', __name__)
api = Api(api_bp_webhooks)
api.add_resource(WebHooksPlex, '/webhooks/plex')