diff options
author | Roberto Hueso Gómez <rhueso@soleta.eu> | 2020-06-30 12:51:51 +0200 |
---|---|---|
committer | Roberto Hueso Gómez <rhueso@soleta.eu> | 2020-06-30 12:51:51 +0200 |
commit | dbf0f00650200b8b4817274953f2e0b684bd622d (patch) | |
tree | 1bf085f2502e9704a7e1bf46cfc44aa039da5292 /cli/objects | |
parent | f41b5f8f9dd5672864b2dfe995e73f259741fa8b (diff) |
Rename files to remove 'og' prefix
This prefix is redundant on almost every file, so the prefix is removed from
filenames and imports.
Diffstat (limited to 'cli/objects')
-rw-r--r-- | cli/objects/__init__.py | 0 | ||||
-rw-r--r-- | cli/objects/client.py | 6 | ||||
-rw-r--r-- | cli/objects/modes.py | 6 | ||||
-rw-r--r-- | cli/objects/scopes.py | 6 |
4 files changed, 18 insertions, 0 deletions
diff --git a/cli/objects/__init__.py b/cli/objects/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/cli/objects/__init__.py 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()) diff --git a/cli/objects/modes.py b/cli/objects/modes.py new file mode 100644 index 0000000..bf175d6 --- /dev/null +++ b/cli/objects/modes.py @@ -0,0 +1,6 @@ +class OgModes(): + + @staticmethod + def list_available_modes(rest): + r = rest.get('/modes') + print(r.json()) diff --git a/cli/objects/scopes.py b/cli/objects/scopes.py new file mode 100644 index 0000000..0bf3ca8 --- /dev/null +++ b/cli/objects/scopes.py @@ -0,0 +1,6 @@ +class OgScope(): + + @staticmethod + def list_scopes(rest): + r = rest.get('/scopes') + print(r.json()) |