diff --git a/ogcli/__init__.py b/cli/__init__.py similarity index 100% rename from ogcli/__init__.py rename to cli/__init__.py diff --git a/ogcli/ogcli.py b/cli/cli.py similarity index 88% rename from ogcli/ogcli.py rename to cli/cli.py index d8e66b7..30c1bb6 100644 --- a/ogcli/ogcli.py +++ b/cli/cli.py @@ -1,6 +1,6 @@ -from ogcli.objects.og_client import OgClient -from ogcli.objects.og_scopes import OgScope -from ogcli.objects.modes import OgModes +from cli.objects.client import OgClient +from cli.objects.scopes import OgScope +from cli.objects.modes import OgModes import argparse import requests import sys diff --git a/ogcli/objects/__init__.py b/cli/objects/__init__.py similarity index 100% rename from ogcli/objects/__init__.py rename to cli/objects/__init__.py diff --git a/ogcli/objects/og_client.py b/cli/objects/client.py similarity index 100% rename from ogcli/objects/og_client.py rename to cli/objects/client.py diff --git a/ogcli/objects/modes.py b/cli/objects/modes.py similarity index 100% rename from ogcli/objects/modes.py rename to cli/objects/modes.py diff --git a/ogcli/objects/og_scopes.py b/cli/objects/scopes.py similarity index 100% rename from ogcli/objects/og_scopes.py rename to cli/objects/scopes.py diff --git a/ogcli.py b/ogcli similarity index 97% rename from ogcli.py rename to ogcli index 4672a3a..33d740a 100755 --- a/ogcli.py +++ b/ogcli @@ -1,6 +1,6 @@ #!/usr/bin/python -from ogcli.ogcli import OgCLI +from cli.cli import OgCLI import argparse import json import sys