diff --git a/kr8s/__init__.py b/kr8s/__init__.py index 26a0d628..bf6d2771 100644 --- a/kr8s/__init__.py +++ b/kr8s/__init__.py @@ -3,6 +3,7 @@ from functools import partial, update_wrapper from typing import Optional, Union +from . import asyncio, objects, portforward from ._api import ALL from ._api import Api as _AsyncApi from ._async_utils import run_sync as _run_sync @@ -170,7 +171,10 @@ def whoami(): "ALL", "api", "api_resources", + "asyncio", "get", + "objects", + "portforward", "version", "watch", "whoami", diff --git a/kr8s/asyncio/__init__.py b/kr8s/asyncio/__init__.py index 46d24ede..f9504969 100644 --- a/kr8s/asyncio/__init__.py +++ b/kr8s/asyncio/__init__.py @@ -2,7 +2,18 @@ # SPDX-License-Identifier: BSD 3-Clause License from kr8s._api import Api +from . import objects, portforward from ._api import api from ._helpers import api_resources, get, version, watch, whoami -__all__ = ["api", "api_resources", "get", "version", "watch", "whoami", "Api"] +__all__ = [ + "api", + "api_resources", + "get", + "objects", + "portforward", + "version", + "watch", + "whoami", + "Api", +]