mirror of
https://github.com/GSA/notifications-api.git
synced 2026-09-07 02:08:25 -04: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()
|