from .base import Base
[docs]class Brand(Base):
endpoint = '/brand'
[docs] def get_brand_image(self):
return self.client.get(
self.endpoint + '/image'
)
[docs] def upload_brand_image(self, files):
return self.client.post(
self.endpoint + '/image',
files=files
)