Skip to content

Commit

Permalink
Add options.
Browse files Browse the repository at this point in the history
No-Issue

Signed-off-by: James Tanner <[email protected]>
  • Loading branch information
jctanner committed Aug 13, 2024
1 parent 7bff0fd commit dfa9491
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions galaxykit/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,9 @@ def patch(self, *args, **kwargs):
def delete(self, path, *args, **kwargs):
return self._http("delete", path, *args, **kwargs)

def options(self, path, *args, **kwargs):
return self._http("options", path, *args, **kwargs)

def pull_image(self, image_name):
"""pulls an image with the given credentials"""
return self.container_client.pull_image(image_name)
Expand Down

0 comments on commit dfa9491

Please sign in to comment.