mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-24 16:24:08 -04:00
14 lines
305 B
Python
14 lines
305 B
Python
|
|
from app.notify_client import NotifyAdminAPIClient
|
||
|
|
|
||
|
|
|
||
|
|
class LetterBrandingClient(NotifyAdminAPIClient):
|
||
|
|
|
||
|
|
def __init__(self):
|
||
|
|
super().__init__("a" * 73, "b")
|
||
|
|
|
||
|
|
def get_letter_branding(self):
|
||
|
|
return self.get(url='/dvla_organisations')
|
||
|
|
|
||
|
|
|
||
|
|
letter_branding_client = LetterBrandingClient()
|