0daca40156
- storage/s3.py: S3Storage moved from storage.py; storage/__init__.py re-exports it - auth/docker.py: Docker Bearer token logic moved from docker_auth.py - docker_auth.py: thin shim re-exporting all public symbols (including _token_cache) for backwards compatibility with existing test and import paths - main.py: now imports get_docker_token_for_response from .auth All 187 tests pass.
20 lines
368 B
Python
20 lines
368 B
Python
from .auth.docker import (
|
|
_cache_key,
|
|
_get_cached_token,
|
|
_store_token,
|
|
_token_cache,
|
|
fetch_token,
|
|
get_docker_token_for_response,
|
|
parse_www_authenticate,
|
|
)
|
|
|
|
__all__ = [
|
|
"_cache_key",
|
|
"_get_cached_token",
|
|
"_store_token",
|
|
"_token_cache",
|
|
"fetch_token",
|
|
"get_docker_token_for_response",
|
|
"parse_www_authenticate",
|
|
]
|