mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-06 18:18:25 -04:00
11 lines
240 B
Python
11 lines
240 B
Python
|
|
from app.notify_client import NotifyAdminAPIClient
|
||
|
|
|
||
|
|
|
||
|
|
class LetterBrandingClient(NotifyAdminAPIClient):
|
||
|
|
|
||
|
|
def get_letter_branding(self):
|
||
|
|
return self.get(url='/dvla_organisations')
|
||
|
|
|
||
|
|
|
||
|
|
letter_branding_client = LetterBrandingClient()
|