mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-22 08:21:13 -05:00
6 lines
180 B
Python
6 lines
180 B
Python
from app.models import ProviderStatistics
|
|
|
|
|
|
def get_provider_statistics(service, provider):
|
|
return ProviderStatistics.query.filter_by(service=service, provider=provider).one()
|