mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-09 14:45:00 -05:00
10 lines
285 B
Python
10 lines
285 B
Python
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)
|
|
|
|
|
|
platform_stats_api_client = PlatformStatsAPIClient()
|