garage-admin-sdk-generator/python/openapi_client/apis/__init__.py
2022-09-12 17:02:35 +02:00

20 lines
577 B
Python

# flake8: noqa
# Import all APIs into this package.
# If you have many APIs here with many many models used in each API this may
# raise a `RecursionError`.
# In order to avoid this, import only the API that you directly need like:
#
# from openapi_client.api.key_api import KeyApi
#
# or import this package, but before doing it, use:
#
# import sys
# sys.setrecursionlimit(n)
# Import APIs into API package:
from openapi_client.api.key_api import KeyApi
from openapi_client.api.layout_api import LayoutApi
from openapi_client.api.membership_api import MembershipApi