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/history/__init__.py

13 lines
237 B

# coding=utf-8
from flask import Blueprint
from flask_restful import Api
from .stats import HistoryStats
api_bp_history = Blueprint('api_history', __name__)
api = Api(api_bp_history)
api.add_resource(HistoryStats, '/history/stats')