diff options
Diffstat (limited to 'cli/objects/client.py')
-rw-r--r-- | cli/objects/client.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/objects/client.py b/cli/objects/client.py new file mode 100644 index 0000000..ca91036 --- /dev/null +++ b/cli/objects/client.py @@ -0,0 +1,6 @@ +class OgClient(): + + @staticmethod + def list_clients(rest): + r = rest.get('/clients') + print(r.json()) |