2018-06-28 10:28:57 +01:00
|
|
|
from app.notify_client import NotifyAdminAPIClient
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class PlatformStatsAPIClient(NotifyAdminAPIClient):
|
|
|
|
|
|
|
|
|
|
def get_aggregate_platform_stats(self, params_dict=None):
|
|
|
|
|
return self.get("/platform-stats", params=params_dict)
|
2018-10-26 15:39:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
platform_stats_api_client = PlatformStatsAPIClient()
|