Files
notifications-api/app/dao/provider_statistics_dao.py

6 lines
180 B
Python
Raw Normal View History

from app.models import ProviderStatistics
def get_provider_statistics(service, provider):
return ProviderStatistics.query.filter_by(service=service, provider=provider).one()