diff --git a/swh/web/__init__.py b/swh/web/__init__.py new file mode 100644 index 0000000..f14e196 --- /dev/null +++ b/swh/web/__init__.py @@ -0,0 +1,4 @@ +from pkgutil import extend_path +from typing import Iterable + +__path__ = extend_path(__path__, __name__) # type: Iterable[str] diff --git a/swh/foo/__init__.py b/swh/web/client/__init__.py similarity index 100% rename from swh/foo/__init__.py rename to swh/web/client/__init__.py diff --git a/swh/foo/bar.py b/swh/web/client/bar.py similarity index 100% rename from swh/foo/bar.py rename to swh/web/client/bar.py diff --git a/swh/foo/cli.py b/swh/web/client/cli.py similarity index 100% rename from swh/foo/cli.py rename to swh/web/client/cli.py diff --git a/swh/foo/py.typed b/swh/web/client/py.typed similarity index 100% rename from swh/foo/py.typed rename to swh/web/client/py.typed diff --git a/swh/foo/tests/__init__.py b/swh/web/client/tests/__init__.py similarity index 100% rename from swh/foo/tests/__init__.py rename to swh/web/client/tests/__init__.py