mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-12 16:14:56 -05:00
11 lines
317 B
Python
11 lines
317 B
Python
|
|
from app.notify_client import NotifyAdminAPIClient
|
||
|
|
|
||
|
|
|
||
|
|
class PerformanceDashboardAPIClient(NotifyAdminAPIClient):
|
||
|
|
|
||
|
|
def get_performance_dashboard_stats(self, params_dict=None):
|
||
|
|
return self.get("/performance-dashboard", params=params_dict)
|
||
|
|
|
||
|
|
|
||
|
|
performance_dashboard_api_client = PerformanceDashboardAPIClient()
|