Auth logic isn't shared between the clients anyway, so co-locating them is confusing since you can't use the same clients to call both. This also makes the codegen clients less verbose.
16 lines
485 B
Python
16 lines
485 B
Python
""" Contains all the data models used in inputs/outputs """
|
|
|
|
from .check_cache_json_body import CheckCacheJsonBody
|
|
from .check_cache_json_body_tags import CheckCacheJsonBodyTags
|
|
from .check_cache_response_200 import CheckCacheResponse200
|
|
from .report_json_body import ReportJsonBody
|
|
from .report_json_body_tags import ReportJsonBodyTags
|
|
|
|
__all__ = (
|
|
"CheckCacheJsonBody",
|
|
"CheckCacheJsonBodyTags",
|
|
"CheckCacheResponse200",
|
|
"ReportJsonBody",
|
|
"ReportJsonBodyTags",
|
|
)
|