Start to build a page to performance platform page.

This commit is contained in:
Rebecca Law
2021-03-10 10:35:58 +00:00
committed by Chris Hill-Scott
parent 3d590a71e4
commit 042527e74c
5 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from app.notify_client import NotifyAdminAPIClient
class PerformancePlatformAPIClient(NotifyAdminAPIClient):
def get_performance_platform_stats(self, params_dict=None):
return self.get("/performance-platform", params=params_dict)
performance_platform_api_client = PerformancePlatformAPIClient()