mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
This removes some code which is duplicative and obscure (ie it’s not very clear why we do `"a" * 73` even though there is a Very Good Reason for doing so).
12 lines
224 B
Python
12 lines
224 B
Python
|
|
from app.notify_client import NotifyAdminAPIClient
|
|
|
|
|
|
class StatusApiClient(NotifyAdminAPIClient):
|
|
|
|
def get_status(self, *params):
|
|
return self.get(url='/_status', *params)
|
|
|
|
|
|
status_api_client = StatusApiClient()
|