Files
notifications-admin/app/notify_client/performance_dashboard_api_client.py

11 lines
317 B
Python
Raw Normal View History

2021-03-10 11:01:15 +00:00
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()